元素中 XML 命名空间的错误输出
Posted
技术标签:
【中文标题】元素中 XML 命名空间的错误输出【英文标题】:Wrong output on XML namespace in element 【发布时间】:2021-03-15 04:16:54 【问题描述】:我最近问了一个关于错误的 XML 输出的问题,原来是因为命名空间被放在了一个元素中。
现在我对此进行了更深入的研究,不幸的是我仍然卡在输出上,因为我现在不知道该给前缀加上什么。
希望你能帮助我。
在我现在拥有的文件和我想要的输出下方。
我的输入 XML:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<ns2:readAllAMDResV04 xmlns:ns2="http://main.jws.com.hanel.de">
<ns2:return>
<article xmlns="http://main.jws.com.hanel.de/xsd">
<articleNumber>Aadrapot99900</articleNumber>
<articleName/>
<inventoryAtStorageLocation>2</inventoryAtStorageLocation>
</article>
<article xmlns="http://main.jws.com.hanel.de/xsd">
<articleNumber>Aadrapot99900</articleNumber>
<articleName/>
<inventoryAtStorageLocation>7</inventoryAtStorageLocation>
</article>
<article xmlns="http://main.jws.com.hanel.de/xsd">
<articleNumber>Ae13963</articleNumber>
<articleName/>
<inventoryAtStorageLocation>128</inventoryAtStorageLocation>
</article>
<article xmlns="http://main.jws.com.hanel.de/xsd">
<articleNumber>PCM11512050E</articleNumber>
<articleName/>
<inventoryAtStorageLocation>68</inventoryAtStorageLocation>
</article>
<ns1:returnValue xmlns:ns1="http://main.jws.com.hanel.de/xsd">0</ns1:returnValue>
</ns2:return>
</ns2:readAllAMDResV04>
</soapenv:Body>
</soapenv:Envelope>
我的 XSLT:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:abc="main.jws.com.hanel.de/xsd"
exclude-result-prefixes="abc"
version="1.0" >
<xsl:key name="key" match="article" use="articleNumber"/>
<xsl:template match="/articles">
<result>
<xsl:apply-templates select="article[generate-id() = generate-id(key('key', articleNumber)[1])]"/>
</result>
</xsl:template>
<xsl:template match="article">
<count>
<articleNumber><xsl:value-of select="articleNumber"/></articleNumber>
<totalQuantity><xsl:value-of select="sum(key('key', articleNumber)/inventoryAtStorageLocation)"/></totalQuantity>
</count>
</xsl:template>
</xsl:stylesheet>
到目前为止我的输出:
Aadrapot99900
2
Aadrapot99900
7
Ae13963
128
我正在寻找的输出:
<?xml version="1.0" encoding="utf-8"?>
<DataSet>
<article>
<articleNumber>Aadrapot99900</articleNumber>
<totalQuantity>9</totalQuantity>
</article>
<article>
<articleNumber>Ae13963</articleNumber>
<totalQuantity>128</totalQuantity>
</article>
</DataSet>
我想我必须在某处添加 abc 前缀,但不知道具体在哪里,而且我不确定关键结果是否匹配。
提前致谢!
【问题讨论】:
【参考方案1】:这个:
<xsl:template match="/articles">
无法工作,因为您的输入中没有名为 articles
的元素 - 当然也不是根元素。
尝试将其更改为:
<xsl:template match="ns2:return">
添加xmlns:ns2="http://main.jws.com.hanel.de"
声明后。您可能还想添加:
<xsl:strip-space elements="*"/>
在样式表的顶部。
这个:
xmlns:abc="main.jws.com.hanel.de/xsd"
错了。实际的命名空间是不同的。它必须是:
xmlns:abc="http://main.jws.com.hanel.de/xsd"
修复该问题后,将 all 对article
的引用更改为abc:article
。对于它的后代articleNumber
和inventoryAtStorageLocation
也是如此。
.
【讨论】:
以上是关于元素中 XML 命名空间的错误输出的主要内容,如果未能解决你的问题,请参考以下文章
XML XSD 错误:org.xml.sax.SAXParseException:s4s-elt-schema-ns:元素“配置”的命名空间必须来自模式命名空间