• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Name space recurring in each element of output XML

 
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi,
i am using jaxb to marshall object into xml and get the following as the output:
<ns1:tradeHeader xmlns:ns1="http://www.cognotec.com/trade/2004/v01">
<ns1:instrument>SP</ns1:instrument>
<ns1:tradeDate>2006-04-27T00:00:00</ns1:tradeDate>
<ns1:acceptDate>2006-04-27T11:13:54</ns1:acceptDate>

My question is how do i avoid getting this namespace "ns1" in each element.
Above is a sample of the entire xml. i do add in the header the namespace to which the xml has to conform to.
pl help me
thanks
venkatB
 
Ranch Hand
Posts: 2108
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
That namespace is specified in your schema.

You want to generate an xml with totally no namespace anywhere?
 
venkat bagavathi subramanian
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
yes,
only an xml with no namespace.
thanks
venkatB
 
Jesus Angeles
Ranch Hand
Posts: 2108
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
(You can try remove the namespace declarations in the schema, and see if the marshalled xml is no longer namespace-qualified. It is probably the 'targetNamespace'.)

Can you post your schema here?
reply
    Bookmark Topic Watch Topic
  • New Topic