Is there a way to suppress the namespace in the response?  I have just a
simple webservice set up which uses aegis.  For example, my output is
currently this:

<list>
  <ns2:Item xmlns:ns2="http://services.mycompany.com";>
    <ns2:desc xmlns="http://services.mycompany.com";>item desc</ns2:desc>
    <ns2:id xmlns="http://services.mycompany.com";>1</ns2:id>
  </ns2:Item>
  <ns2:Item xmlns:ns2="http://services.mycompany.com";>
    <ns2:desc xmlns="http://services.mycompany.com";>item desc 2</ns2:desc>
    <ns2:id xmlns="http://services.mycompany.com";>22</ns2:id>
  </ns2:Item>
</list>

And I want it to be simply this:

<list>
  <Item>
    <desc>item desc</desc>
    <id>1</id>
  </Item>
  <Item>
    <desc>item desc2</desc>
    <id>22</id>
  </Item>
</list>
-- 
View this message in context: 
http://www.nabble.com/suppress-namespace--tf4793377.html#a13712697
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to