我有以下XML片段:
<?xml version="1.0" encoding="UTF-8"?>
<Envelope xmlns="http://schemas.microsoft.com/dynamics/2008/01/documents/Message">
<Header>
<MessageId>{11EA62F5-543A-4483-B216-91E526AE2319}</MessageId>
<SourceEndpoint>SomeSource</SourceEndpoint>
<DestinationEndpoint>SomeDestination</DestinationEndpoint>
</Header>
<Body>
<MessageParts xmlns="http://schemas.microsoft.com/dynamics/2008/01/documents/Message">
<SalesInvoice xmlns="http://schemas.microsoft.com/dynamics/2008/01/documents/SalesInvoice">
<DocPurpose>Original</DocPurpose>
<SenderId>Me</SenderId>
<CustInvoiceJour class="entity">
<_DocumentHash>ddd70464452c64d5a35dba5ec50cc03a</_DocumentHash>
<Backorder>No</Backorder>
</CustInvoiceJour>
</SalesInvoice>
</MessageInvoice>
</Body>
</Envelope>
正如您所看到的,这会使用多个名称空间,因此当我想使用XSL对其进行转换时,我不确定应该使用哪个名称空间,因为我需要从Header
标记中收集一些信息SalesInvoice
代码。
这是我的XSL文件:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xheader="http://schemas.microsoft.com/dynamics/2008/01/documents/Message"
exclude-result-prefixes="xheader"
>
<xsl:output method="xml" indent="yes" />
<xsl:template match="/">
<header>
<name><xsl:value-of select="/*/*/xheader:SourceEndpoint" /></name>
</header>
<body>
<test><xsl:value-of select="/*/*/*/*/*/xheader:Backorder" /></test>
</body>
</xsl:template>
</xsl:stylesheet>
在转换后的文档中,SourceEndpoint
已填充但Backorder
未填充,因为它使用不同的命名空间。那么如何才能使用不同的命名空间呢?
答案 0 :(得分:1)
您只需在xslt中声明并使用两个名称空间:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xheader="http://schemas.microsoft.com/dynamics/2008/01/documents/Message"
xmlns:xsales="http://schemas.microsoft.com/dynamics/2008/01/documents/SalesInvoice"
exclude-result-prefixes="xheader xsales"
>
<xsl:output method="xml" indent="yes" />
<xsl:template match="/">
<header>
<name><xsl:value-of select="/*/*/xheader:SourceEndpoint" /></name>
</header>
<body>
<test><xsl:value-of select="/*/*/*/*/*/xsales:Backorder" /></test>
</body>
</xsl:template>
</xsl:stylesheet>