我想知道我们如何将前缀类型 [xsi:type"..."] 添加到每个重复的父节点并选择它的所有子节点。xml 是肥皂信封,输出是对信封的标题和正文的修改。示例输入 xml 是:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ns="http://Example1.com"
xmlns:ns1="http://Sample1.com">
<soapenv:Header>
<ns:SessionHeader>
<ns:Auth>a1b2c4d5</ns:Auth>
</ns:SessionHeader>
</soapenv:Header>
<soapenv:Body>
<ns:Create>
<!--Zero or more repetitions:-->
<ns:BankAccount>
<ns1:AccountNumber>1111</ns1:AccountNumber>
<ns1:BillingState>Texas</ns1:BillingState>
<ns1:Name>John</ns1:Name>
<ns1:Phone>+1 111</ns1:Phone>
<ns1:Site>Chicago</ns1:Site>
<ns1:Website>www.site1.com</ns1:Website>
.
.
</ns:BankAccount>
<ns:BankAccount>
<ns1:AccountNumber>222</ns1:AccountNumber>
<ns1:BillingState>Hawai</ns1:BillingState>
<ns1:Name>Bob</ns1:Name>
<ns1:Phone>+2 222</ns1:Phone>
<ns1:Site>Canada</ns1:Site>
<ns1:Website>www.site2.com</ns1:Website>
.
.
</ns:BankAccount>
.
.
.
</ns:Create>
</soapenv:Body>
</soapenv:Envelope>
给定输入 xml 所需的输出 xml 是
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ns="http://Example1.com"
xmlns:ns1="http://Sample1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Header>
<ns:SessionHeader>
<ns:Auth>a1b2c4d5</ns:Auth>
</ns:SessionHeader>
</soapenv:Header>
<soapenv:Body>
<ns:Create>
<ns:BankAccount xsi:type="Account" xmlns="http://Example1.com" >
<ns1:AccountNumber>1111</ns1:AccountNumber>
<ns1:BillingState>Texas</ns1:BillingState>
<ns1:Name>John</ns1:Name>
<ns1:Phone>+1 111</ns1:Phone>
<ns1:Site>Chicago</ns1:Site>
<ns1:Website>www.site1.com</ns1:Website>
.
.
</ns:BankAccount>
<ns:BankAccount xsi:type="Account" xmlns="http://Example1.com" >
<ns1:AccountNumber>222</ns1:AccountNumber>
<ns1:BillingState>Hawai</ns1:BillingState>
<ns1:Name>Bob</ns1:Name>
<ns1:Phone>+2 222</ns1:Phone>
<ns1:Site>Canada</ns1:Site>
<ns1:Website>www.site2.com</ns1:Website>
.
.
</ns:BankAccount>
.
.
.
</ns:Create>
</soapenv:Body>
</soapenv:Envelope>
我已经尝试使用下面提到的 XSL,但它没有产生所需的结果。
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="/">
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ns="http://Example1.com"
xmlns:ns1="http://Sample1.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Header>
<ns:SessionHeader>
<ns:Auth>
<xsl:value-of select="//ns:Auth"/>
</ns:Auth>
</ns:SessionHeader>
</soapenv:Header>
<soapenv:Body>
<ns:Create>
<ns:BankAccount xsi:type="Account" xmlns="http://Example1.com">
<xsl:apply-template select="node()"/>
</ns:BankAccount>
</ns:Create>
</soapenv:Body>
</soapenv:Envelope>
</xsl:template>
</xsl:stylesheet>
我不确定我哪里出错了。我是否需要首先获取所有父“BankAccount”节点及其元素以添加前缀,然后重新构建肥皂信封?请指导我。