我正在 XML 中从一个命名空间移动到另一个命名空间,并且我一直面临 xsi:type 类型化元素的属性的问题。我一直在使用下一个模板,它可以轻松地将具有一个命名空间的元素移动到另一个命名空间。
<xsl:template match="ent:*" >
<xsl:element name="ent:{local-name()}"
namespace="http://ns3">
<xsl:copy-of select="@*" />
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()" />
</xsl:copy>
</xsl:template>
但我无法将属于给定名称空间的属性值更新为 xsi:type 属性。
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ser:getAsByIdResponse xmlns:ser="http://osde.com.ar/services">
<return xmlns:xsi=".." xmlns:ns3New="http://ns3" xmlns:ns1New="http://ns2" xsi:type="nsold:aType"/>
</ser:getAsByIdResponse>
</soap:Body/>
</soap:Envelope>
在上面的示例中,我无法将“nsold:atype”更改为使用新名称空间的“ns3New:atype”。有什么办法可以调整这种值吗?