Xslt:通过参数动态创建根元素

时间:2012-08-06 01:36:20

标签: xml xslt xpath xslt-1.0 xml-namespaces

以下是XML数据中的节点

<ProcessData
 <WebServiceUrl>"http://webser.part.site"</WebServiceUrl>
<UserName>nida</UserName>
<Passsword>123</Password>
</ProcessData>

我已将此节点值传递给Xslt Service现在我在参数e-g中有此url NODE值

<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 Code得到的最终outPut为:

enter code here
<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>

当我应用这个XSLT时

此转化

<xsl:stylesheet version="1.0"   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
     xmlns:ext="http://exslt.org/common"
     xmlns:soapenv="http:/`enter code here`/schemas.xmlsoap.org/soap/envelope/"
     exclude-result-prefixes="ext soapenv">
        <xsl:output omit-xml-declaration="yes" indent="yes"/>
      <xsl:param name="pUserName" select="'nida'"/>
      <xsl:param name="pPassword" select="'123'"/>
      <xsl:param name="pWebServiceUrl" select="'http://webser.part.site'"/>

        <xsl:variable name="vrtfDummy">
         <xsl:element name="web:dummy" namespace="{$pWebServiceUrl}"/>
        </xsl:variable>

        <xsl:variable name="vNS" select="ext:node-set($vrtfDummy)/*/namespace::web"/>

     <xsl:template match="/*">
       <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
           <xsl:copy-of select="$vNS"/>
         <soapenv:Body>
           <xsl:element name="web:upload" namespace="{$vNS}">
             <xsl:element name="web:username" namespace="{$vNS}">
               <xsl:value-of select="$pUserName"/>
             </xsl:element>
             <xsl:element name="web:password" namespace="{$vNS}">
               <xsl:value-of select="$pPassword"/>
             </xsl:element>
           </xsl:element>
         </soapenv:Body>
         </soapenv:Envelope>
     </xsl:template>
</xsl:stylesheet>

请帮帮我我遇到了麻烦,因为我要在几天内寻找解决方案。我是XSLT的新手,所以我不太了解它。 请帮助我实现所需的输出。

当我将以上XSLT代码应用于给定的XML时,我得到以下OUTPUT哪个不正确。

 <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
 <soapenv:Body>
    <web:upload xmlns:web="http://webser.part.site">
   <web:username>nida</web:username>
    <web:password>123</web:password>
   </web:upload>
       </soapenv:Body>
    </soapenv:Envelope>

我想要的输出如下:

<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>

1 个答案:

答案 0 :(得分:0)

Nida,AFAIK,XMLSPY没有xxx:node-set()分机。

<强>尝试

<xsl:variable name="vNS" select="$vrtfDummy/*/namespace::web"/> 

或者,如果仍然导致错误,请尝试使用MSXML或Saxon命名空间和xxx:node-set()函数。