以下是 XML 数据中的节点
<WebServiceUrl>"http://webser.part.site"</WebServiceUrl>
<UserName>nida</UserName>
<Passsword>123</Password>
我已将此节点值传递给 Xslt 服务,现在我在参数中有此 url 节点值,例如
<xsl:param name="UserName"/>
<xsl:param name="Password"/>
<xsl:param name="WebServiceUrl"/>
现在我想创建一个 soapenv:Envelope 标签并在其中使用这个值
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:web="$WebServiceUrl">
所以我想从 XSLT 代码中得到的最终输出是:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:web="http://webservice2.partner.insite">
<soapenv:Header/>
<soapenv:Body>
<web:upload>
<web:username>nida</web:username>
<web:password>123</web:password>
</web:upload></soapenv:Body></soapenv:Envelope>
非常感谢你的帮助 。
这是你的代码:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" encoding="UTF-8" omit-xml-declaration="yes"/>
<xsl:param name="UserName"/>
<xsl:param name="Password"/>
<xsl:param name="WebServiceUrl" select="'some: namespace'"/>
<xsl:template match="/">
SOAPAction: "urn:upload"
Content-Type: text/xml;charset=UTF-8
<xsl:text>
</xsl:text>
<xsl:element name="{name()}"
namespace="http://schemas.xmlsoap.org/soap/envelope/">
<xsl:sequence select="namespace::*[not(name()='web')]"/>
<xsl:namespace name="web" select="$WebServiceUrl"/>
</xsl:element>
<xsl:text>
</xsl:text>
<soapenv:Header/>
<xsl:text>
</xsl:text>
<soapenv:Body>
<xsl:text>
</xsl:text>
<web:upload>
<xsl:text>
</xsl:text>
<web:username><xsl:value-of select="$UserName"/> </web:username>
<xsl:text>
</xsl:text>
<web:password><xsl:value-of select="$Password"/> </web:password>
<xsl:text>
</xsl:text>
</soapenv:Envelope>
</xsl:template>
</xsl:stylesheet>
当我尝试保存此代码时,由于缺少此节点的起始标记,因此出现错误
</soapenv:Envelope>
请对此进行更改,我在此做错了什么。