我需要更改 SOAP 文档的名称空间。只有名称空间应该更改,所有其他 SOAP 保持原样。
这是我的 SOAP 文档:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:tar="namespace1"
xmlns:tar1="namespace1">
<soapenv:Header/>
<soapenv:Body>
<tar:RegisterUser>
<tar1:Source>?</tar1:Source>
<tar1:Profile>
<tar1:EmailAddress>?</tar1:EmailAddress>
<tar1:NewEmailAddress>?</tar1:NewEmailAddress>
<tar1:GivenName>?</tar1:GivenName>
</tar1:Profile>
</tar:RegisterUser>
</soapenv:Body>
</soapenv:Envelope>
我希望namespace1
在命名空间2 中进行更改。这是我的转变:
<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:old="namespace1"
xmlns:new="namespace2">
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="old:*">
<xsl:element name="{local-name()}" xmlns="namespace2" >
<xsl:apply-templates select="node()|@*"/>
</xsl:element>
</xsl:template>
</xsl:stylesheet>
但是当我运行它时,它给了我这个输出:
<?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tar="namespace1" xmlns:tar1="namespace1">
<soapenv:Header/>
<soapenv:Body>
<RegisterUser>
<Source>?</Source>
<Profile>
<EmailAddress>?</EmailAddress>
<NewEmailAddress>?</NewEmailAddress>
<GivenName>?</GivenName>
</Profile>
</RegisterUser>
</soapenv:Body>
</soapenv:Envelope>
我只想更改名称空间。不是从元素中删除的前缀。也许有人知道问题出在哪里?