我有一个SOAP请求,如下所示;
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetCountriesResponse xmlns="url">
<GetCountriesResult>
<ExtendedOptionItem>
<Value>GB</Value>
<Description>United Kingdom</Description>
<Active>true</Active>
<IsDefault>true</IsDefault>
<Order>0</Order>
</ExtendedOptionItem>
<ExtendedOptionItem>
<Value>GB</Value>
<Description>United Kingdom</Description>
<Active>true</Active>
<IsDefault>true</IsDefault>
<Order>0</Order>
</ExtendedOptionItem>
</GetCountriesResult>
</GetCountriesResponse>
</soap:Body>
</soap:Envelope>
我的XSLT目前专门针对“描述”节点。我想做的是为每个“ExtendedOptionItem”提取描述。
我编写了一些XSLT,需要用分号分隔每个描述。
当只有一个“ExtendedOptionItem”时,此XSLT工作正常。但是,当有多个项目时,XML不会被转换。
请您查看我的XSLT并评估我出错的地方;
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<xsl:output method="xml" omit-xml-declaration="no" encoding="utf-8" indent="yes" />
<xsl:template match="/">
<xsl:for-each xmlns:n="url" select="n:ExtendedOptionItem">
<xsl:value-of select="n:Description" />;</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
非常感谢
UPDATE;
工作流引擎修改SOAP响应,如下所示;
<ExtendedOptionItem xmlns="url"><Value>GB</Value><Description>United Kingdom</Description><Active>true</Active><IsDefault>true</IsDefault><Order>0</Order></ExtendedOptionItem><ExtendedOptionItem xmlns="url"><Value>AF</Value><Description>Afghanistan</Description><Active>true</Active><IsDefault>false</IsDefault><Order>0</Order></ExtendedOptionItem><ExtendedOptionItem xmlns="url"><Value>AX</Value><Description>Åland Islands</Description><Active>true</Active><IsDefault>false</IsDefault><Order>0</Order></ExtendedOptionItem>
答案 0 :(得分:0)
当只有一个XSLT时,它非常正常 “ExtendedOptionItem”。
不,它没有。
问题是您的模板与/
根节点匹配 - 而ExtendedOptionItem
不是/
根节点的子节点。结果,你的:
<xsl:for-each xmlns:n="url" select="n:ExtendedOptionItem">
什么都不选。尝试将其更改为:
<xsl:for-each xmlns:n="url" select="//n:ExtendedOptionItem">