change namespace
Hi,
I have the following xml
<Data xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"xmlns:icns="urn:NewBusiness_XXX"
xmlns:fo="http://www.w3.org/1999/XSL/Format">
<createdDate>11/12/2009 at 09:21:38</createdDate>
<product_code>ABC</product_code>
</Data>
I would like to change the namespace icns to urn:NewBusiness_ABC
i.e i would like to get the following.
<Data xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"xmlns:icns="urn:NewBusiness_ABC"
xmlns:fo="http://www.w3.org/1999/XSL/Format">
<createdDate>11/12/2009 at 09:21:38</createdDate>
<product_code>ABC</product_code>
</Data>
I have tried various methods but nothing works any hints ?
|