<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:t1="http://mynamespace/A" xmlns:top="http://mynamespace/B"
xmlns:max="http://mynamespace/C"><soapenv:Body>
<t1:Creditcard>
<top:AutoPayenroll>
<top:CustomerId>
<max:CustName>Taylor</max:CustName>
<max:CustID>1234</max:CustID>
</top:CustomerId>
</top:AutoPayenroll>
</t1:CreditCard></soapenv:Body></soapenv:Envelope>
需要將CustID更改爲我所做的加密的一個。但不知道如何將它插入使用xsl將相同的名稱空間添加到xml
使用此XSL:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:t1="http://mynamespace/A" xmlns:top="http://mynamespace/B"
xmlns:max="http://mynamespace/C" version="1.0">
<xsl:output method="xml"/><xsl:template match="/">
<xsl:apply-templates/> </xsl:template> <xsl:template match="//*[local-name()='CustID']">
<xsl:variable name="cleartxt" select="./text()"/>
<!--got this encrypted data from my internal code-->
<xsl:variable name="encdata" select="'jksdguasidgeiruh'"/>
<xsl:element name="//*[local-name()='Pswd']">
<xsl:value-of select="$encdata"/>
</xsl:element> </xsl:template> <xsl:template match="*">
<xsl:copy> <xsl:copy-of select="@*"/>
<xsl:apply-templates/>
</xsl:copy> </xsl:template> </xsl:stylesheet>
反應應該是如下:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:t1="http://mynamespace/A" xmlns:top="http://mynamespace/B" xmlns:max="http://mynamespace/C"><soapenv:Body>
<t1:Creditcard>
<top:AutoPayenroll>
<top:CustomerId>
<max:CustName>Taylor</max:CustName>
<max:CustID>jksdguasidgeiruh</max:CustID>
</top:CustomerId>
</top:AutoPayenroll>
</t1:CreditCard></soapenv:Body></soapenv:Envelope>
我工作在你的形式打一些。你能編輯你的問題並修復它的其餘部分嗎?這對我們來說會更容易閱讀和理解。 – LarsH
此外,如果您要輸出帶有加密文本內容的「」,並且您的「響應應該是」,但您的XSLT表示您要輸出帶有該內容的「」。你要哪個? –
LarsH
請執行@LarsH寫的內容。我們希望網站上的問題能夠正確格式化,以便使用。 – hakre