I want to have JAXB-annotated classes which would be marshalled/unmarshalled to different XML namespaces.
What I need is something like:
<someRootElement xmlns="urn:my:ns1"
    xmlns:a="urn:my:ns2" xmlns:b="urn:my:ns3">
  <someElement/>
  <a:someElement/>
  <b:someElement/>
</someRootElement>
How can it be done?
Can it be done programatically? (without the need for JAXB's .xjb bindings file?)
 
    