1

我有一个来自客户的以下肥皂信封

<soap:Envelope xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
 <soap:Header>
  <wsa:Action>http://company.com/services/InterfacePoint/CallResponse</wsa:Action>
  <wsa:MessageID>uuid:85fafb9d-9ec0-4017-a367-4f9043812310</wsa:MessageID>
  <wsa:To>http://schemas.xmlsoap.org/ws/2004/03/addressing/role/anonymous</wsa:To>
  <wsse:Security>
     <wsu:Timestamp wsu:Id="Timestamp-dc059677-19f6-4b2c-a69b-ec0dffc6b1db">
        <wsu:Created>2013-03-28T16:24:33Z</wsu:Created>
        <wsu:Expires>2013-03-28T16:29:33Z</wsu:Expires>
     </wsu:Timestamp>
  </wsse:Security>
</soap:Header>
<soap:Body>
  <TXLife xsi:schemaLocation="http://ACORD.org/Standards/Life/2 TXLife2.22.00.XSD" xmlns="http://ACORD.org/Standards/Life/2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  .
  .
  . 
  </TXLife>
 </soap:Body> 
</soap:Envelope>

我只是对检索里面的内容感兴趣soap:Body并丢弃其他所有内容。我写这个XSLT来提取那个

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/>
  <xsl:template match="soap:Envelope/soap:Body">
      <xsl:copy-of select="@*|node()" />    
  </xsl:template> 
</xsl:stylesheet>

XSLT当肥皂信封中没有标题时,这可以正常工作,但是如果我将其应用于上面XML,它也会输出标题元素的值,因此它产生的输出是:

http://company.com/services/InterfacePoint/CallResponseuuid:85fafb9d-9ec0-4017-a367-4f9043812310http://schemas.xmlsoap.org/ws/2004/03/addressing/role/anonymous2013-03-28T16:24:33Z2013-03-28T16:29:33Z<TXLife xmlns="http://ACORD.org/Standards/Life/2"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing"
        xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
        xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
        xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
        xsi:schemaLocation="http://ACORD.org/Standards/Life/2 TXLife2.22.00.XSD">
.
.
.
</TXLife>

但我希望输出为:

<TXLife xmlns="http://ACORD.org/Standards/Life/2">
.
.
.
</TXLife>

我不在乎是否存在其他名称空间。

4

1 回答 1

3

这是因为文本节点有一个默认模板,可以将其内容复制到输出。为了使您的方法有效,您需要通过添加来抑制它

<xsl:template match="text()" />

现在,如果您soap:Body只有一个子元素,您应该会得到一个格式良好的结果,但它仍然会包含额外的命名空间声明。

我会从不同的角度来解决这个问题,使用身份模板而不是副本。XSLT 2.0 有一个方便的工具copy-namespaces="no",您可以使用它<xsl:copy>来去除不必要的命名空间声明:

<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
    xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

  <!-- extract just the first child of the body -->
  <xsl:template match="/">
    <xsl:apply-templates select="/soap:Envelope/soap:Body/*[1]" />
  </xsl:template>

  <!-- identity template, but dropping namespace declarations not used
       directly by this element -->
  <xsl:template match="@*|node()">
    <xsl:copy copy-namespaces="no">
      <xsl:apply-templates select="@*|node()" />
    </xsl:copy>
  </xsl:template>

  <!-- drop xsi:schemaLocation attributes -->
  <xsl:template match="@xsi:schemaLocation" />
</xsl:stylesheet>
于 2013-03-28T17:00:46.057 回答