I have a input xml like..:
<?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>
How do I select each and every value of the node 'Gtin' and avoid namespace through XSLT?
Output XML should be...
<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>