I have the following:
<Data xmlns:x="Namespace.com">
<Node></Node>
<Node2></Node2>
<Node3></Node3>
</Data>
How using XSLT can I change the one namespace within the Data node without seeing the namespace declaration appear everywhere else.
Desired Output:
<Data xmlns:x="TheNewNamespace.com">
<Node></Node>
<Node2></Node2>
<Node3></Node3>
</Data>
Thanks in advance
Use: