1
繼動態創建根元素是XSLT:由參數
<ProcessData
<WebServiceUrl>"http://webser.part.site"</WebServiceUrl>
<UserName>nida</UserName>
<Passsword>123</Password>
</ProcessData>
我已經這個節點值傳遞給XSLT服務在XML數據中的節點現在我有在參數例如此URL NODE值
<xsl:param name="UserName"/>
<xsl:param name="Password"/>
<xsl:param name="WebServiceUrl"/>
現在我想創建一個soapenv:信封標籤和它
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:web="$WebServiceUrl">
所以國際泳聯使用此值這是我從XSLT代碼想l輸出是:
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>
我所需的輸出是Folllowing:
<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:動態創建根元素(開始標記)](http://stackoverflow.com/questions/11808073/xslt-create-root-element-starting-tag-dynamically) – 2012-08-06 04:11:57
@DimitreNovatchev請幫助 – user1578018 2012-08-06 11:23:11
奈達,你相同的問題http://stackoverflow.com/questions/11808073/xslt-create-root-element-starting-tag-dynamically完全回答 - 你需要什麼更多的「幫助」?請不要多次提問同一個問題。 – 2012-08-06 12:00:17