Hi,
In OSB how to remove a namespace from header or body?
I have an XML like below
<a xmlns:prod="abcd.com" xmlns:prod2="efgh.com">
<prod2:b>fff</prod2:b>
</a>
and i want to remove only one namespace xmlns:prod="abcd.com" from the xml.. the output should be like below
<a xmlns:prod2="efgh.com">
<prod2:b>fff</prod2:b>
</a>
Thanks
Anand.U