我在使用名称空间时遇到了麻烦。
我得到如下输入。
<?xml version="1.0" encoding="UTF-8"?>
<Org xmlns="http://mysample.org" >
<Dept>
<Person>
<FirstName>Sample </FirstName>
<LastName> Sampel L </LastName>
<Address>
<Street>Sample Street</Street>
<House>45 Block C </House>
<State>Kentucky</State>
<AddExtension>
<ns3:LandMark xmlns:ns3="http://mysample.org" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ns3:POI tag="temp">Sample POI </ns3:POI>
</ns3:LandMark>
</AddExtension>
</Person>
</Dept>
</Org>
我需要将命名空间前缀添加到此 XML 中的所有元素。
我尝试了以下 XSL:
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:ns3="http://mysample.org">
<xsl:output omit-xml-declaration="no" indent="yes" />
<xsl:strip-space elements="*" />
<!-- <xsl:template match="*"> <xsl:copy> <xsl:apply-templates select="node()|@*"/>
</xsl:copy> </xsl:template> -->
<xsl:template match="*">
<xsl:element name="ns3:{name()}" namespace="http://mysample.org">
<xsl:copy-of select="@*"></xsl:copy-of>
<xsl:copy-of select="namespace::*" />
<xsl:apply-templates select="node()" />
</xsl:element>
</xsl:template>
</xsl:stylesheet>
但由于输入 XML 中的 AddExtension 数据而出现问题“
注意:“AddExtension”中的数据是基于 xsd:any 标签的 scema。因此,对于不同的输入 XML,它将是不同的数据。
我该如何克服呢?
请帮忙。