XSLT改造肥皂

时间:2013-10-11 13:09:44

标签: xslt soap transformation

我有这个xml文件

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tes="http://testwork/">
   <soapenv:Header/>
   <soapenv:Body>
      <tes:sayHelloWorldFrom>
         <!--Optional:-->
         <arg0>?</arg0>
      </tes:sayHelloWorldFrom>
   </soapenv:Body>
</soapenv:Envelope>

我想使用xslt转换提取body,我的xsl是

<xsl:stylesheet version="1.0" 
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope"
    xmlns:m="http://www.example.org/stock">
    <xsl:template match="/">
        <xsl:apply-templates select="soapenv:Envelope/soapenv:Body/*"/>
    </xsl:template>
    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
    </xsl:template>
</xsl:stylesheet>

但在转型期间出现错误

Unable to perform XSL transformation on your XML file. null

我的xsl出了什么问题?

1 个答案:

答案 0 :(得分:1)

您的XSL缺少XML中的命名空间。没有它,您的XSL无法在XML中找到您的元素,因为它会查找错误的命名空间。

所以添加

xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:tes="http://testwork/"

对于你的XSL,它应该没有问题地转换。