を避けるために:XSLTは..私は、入力XML等を有していて、名前空間
<?xml version="1.0" encoding="UTF-8"?>
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<ListResponse xmlns="urn:abcde:xyz:1">
<Gtins>
<Gtin>
<gtinID>11111</gtinID>
<name>222222</name>
<label>S11111 - EA</label>
<description>XYZ</description>
<value>11111</value>
</Gtin>
<Gtin>
<gtinID>999999</gtinID>
<name>999999</name>
<label>asdfg</label>
<description>ghgj</description>
<value>999999</value>
</Gtin>
</Gtins>
</ListResponse>
</S:Body>
</S:Envelope>
はどのようにして、各ノードGTIN]のすべての値を選択して、XSLTによる名前空間を避けるのですか?
出力XMLがあるべき...
<ns0:RFC xmlns:ns0="http://asd.com">
<Gtins>
<Gtin>
<gtinID>11111</gtinID>
<name>222222</name>
<label>S11111 - EA</label>
<description>XYZ</description>
<value>11111</value>
</Gtin>
<Gtin>
<gtinID>999999</gtinID>
<name>999999</name>
<label>asdfg</label>
<description>ghgj</description>
<value>999999</value>
</Gtin>
</Gtins>
</ns0:RFC>
[this](http://stackoverflow.com/help/mcve)を読んで質問を編集してください。 – uL1
名前空間は**使用される**、避けられない*。ここをクリックしてください:http://stackoverflow.com/questions/34758492/xslt-transform-doesnt-work-until-i-remove-root-node/34762628#34762628 –
マイケルに感謝しますが、 値を取得しません。 –
Sdey