我正在尝试将 xsl(使用应用模板)应用于 xml,
这是xml,
<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>
<SearchResponse xmlns="http://xyz/abcApi">
<SearchResult>
<Status>
<StatusCode>01</StatusCode>
<Description>Successful</Description>
<Category>SR</Category>
</Status>
<Result>
<WSResult>
<Index>1</Index>
<CityId>111</CityId>
</WSResult>
<WSResult>
<Index>2</Index>
<CityId>111</CityId>
</WSResult>
</Result>
<SessionId>1fc15f22-a670-4f33-b050-c93fa3184cb1</SessionId>
<IsDomestic>true</IsDomestic>
</SearchResult>
</SearchResponse>
</soap:Body>
</soap:Envelope>
而 xsl 是,
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<Response>
<Param>
<Ref>
<Results>
<xsl:apply-templates select="//SearchResponse/SearchResult/Result/WSResult"/>
</Results>
</Ref>
</Param>
</Response>
</xsl:template>
<xsl:template match="WSResult">
<Result>
<Property>
<xsl:attribute name="Id"><xsl:value-of select="position()"/></xsl:attribute>
<xsl:attribute name="CityCode"><xsl:value-of select="CityId"/></xsl:attribute>
</Property>
</Result>
</xsl:template>
</xsl:stylesheet>
此 xml 无法应用上面指定的 xsl。请提出解决方案。