View Single Post
  #1 (permalink)  
Old January 14th, 2009, 12:00 PM
nguna nguna is offline
Authorized User
Points: 95, Level: 1
Points: 95, Level: 1 Points: 95, Level: 1 Points: 95, Level: 1
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%
 
Join Date: Jan 2009
Posts: 23
Thanks: 2
Thanked 0 Times in 0 Posts
Question 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 ?
Reply With Quote