1

我有这个 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 转换提取正文,我的 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 有什么问题?

4

1 回答 1

1

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

所以添加

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

到您的 XSL,它应该毫无问题地转换。

于 2013-10-11T13:38:58.047 回答