Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8392345
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T19:29:38+00:00 2026-06-09T19:29:38+00:00

The JAXB objects have been generated with Eclipse and then I’ve been trying to

  • 0

The JAXB objects have been generated with Eclipse and then I’ve been trying to tweak it.

I want to get this with JAXB:

</RootElement xmlns="http://example.com/rootElement">
    <Body>
        <OtherRoot xmlns="http://example.com/OtherRoot">
            <CompanyName>Google</CompanyName>
            <DataSet>online</DataSet>
        </OtherRoot>
    </Body>
</RootElement>

but all I’ve managed to do is this:

</RootElement xmlns="http://example.com/rootElement" 
    xmlns:n2="http://example.com/OtherRoot">
    <Body>
        <ns2:OtherRoot>
            <ns2:CompanyName>Goolge</ns2:CompanyName>
            <n2:DataSet>online</n2:DataSet>
        </ns2:OtherRoot>
    </Body>
</RootElement>

Which is not ideal. What would be the best way to get the desired result?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T19:29:40+00:00Added an answer on June 9, 2026 at 7:29 pm

    Thanks to Blaise for mention his previous answer. I ended using a similar approach:

    This is how I intercepted the Writer:

    StringWriter writer = new StringWriter();
    XMLOutputFactory factory = XMLOutputFactory.newFactory();
    XMLWriter xmlWriter = new XMLWriter(factory.createXMLStreamWriter(writer));
    marshaller.marshal(message, xmlWriter);
    

    And here is the XMLWriter class:

    import java.util.Iterator;
    
    import javax.xml.namespace.NamespaceContext;
    import javax.xml.stream.XMLStreamException;
    import javax.xml.stream.XMLStreamWriter;
    
    public class XMLWriter implements XMLStreamWriter {
    
    private XMLStreamWriter writer;
    
    private ProxyNameSpaceContext nc = new ProxyNameSpaceContext();
    
    public XMLWriter(XMLStreamWriter writer) throws XMLStreamException {
        super();
        this.writer = writer;
        writer.setNamespaceContext(nc);
    }
    
    @Override
    public void close() throws XMLStreamException {
        writer.close();
    }
    
    @Override
    public void flush() throws XMLStreamException {
        writer.flush();
    }
    
    @Override
    public NamespaceContext getNamespaceContext() {
        return writer.getNamespaceContext();
    }
    
    @Override
    public String getPrefix(String uri) throws XMLStreamException {
        return writer.getPrefix(uri);
    }
    
    @Override
    public Object getProperty(String name) throws IllegalArgumentException {
        return writer.getProperty(name);
    }
    
    @Override
    public void setDefaultNamespace(String uri) throws XMLStreamException {
        writer.setDefaultNamespace(uri);
    }
    
    @Override
    public void setNamespaceContext(NamespaceContext context)
            throws XMLStreamException {
    }
    
    @Override
    public void setPrefix(String prefix, String uri) throws XMLStreamException {
        writer.setPrefix(prefix, uri);
    }
    
    @Override
    public void writeAttribute(String prefix, String namespaceURI,
            String localName, String value) throws XMLStreamException {
        writer.writeAttribute(prefix, namespaceURI, localName, value);
    }
    
    @Override
    public void writeAttribute(String namespaceURI, String localName,
            String value) throws XMLStreamException {
        writer.writeAttribute(namespaceURI, localName, value);
    }
    
    @Override
    public void writeAttribute(String localName, String value)
            throws XMLStreamException {
        writer.writeAttribute(localName, value);
    }
    
    @Override
    public void writeCData(String data) throws XMLStreamException {
        writer.writeCData(data);
    }
    
    @Override
    public void writeCharacters(char[] text, int start, int len)
            throws XMLStreamException {
        writer.writeCharacters(text, start, len);
    }
    
    @Override
    public void writeCharacters(String text) throws XMLStreamException {
        writer.writeCharacters(text);
    }
    
    @Override
    public void writeComment(String data) throws XMLStreamException {
        writer.writeComment(data);
    }
    
    @Override
    public void writeDTD(String dtd) throws XMLStreamException {
        writer.writeDTD(dtd);
    }
    
    @Override
    public void writeDefaultNamespace(String namespaceURI)
            throws XMLStreamException {
        writer.writeDefaultNamespace(namespaceURI);
    }
    
    @Override
    public void writeEmptyElement(String prefix, String localName,
            String namespaceURI) throws XMLStreamException {
        writer.writeEmptyElement(prefix, localName, namespaceURI);
    }
    
    @Override
    public void writeEmptyElement(String namespaceURI, String localName)
            throws XMLStreamException {
        writer.writeEmptyElement(namespaceURI, localName);
    }
    
    @Override
    public void writeEmptyElement(String localName) throws XMLStreamException {
        writer.writeEmptyElement(localName);
    }
    
    @Override
    public void writeEndDocument() throws XMLStreamException {
        writer.writeEndDocument();
    }
    
    @Override
    public void writeEndElement() throws XMLStreamException {
        writer.writeEndElement();
    }
    
    @Override
    public void writeEntityRef(String name) throws XMLStreamException {
        writer.writeEntityRef(name);
    }
    
    @Override
    public void writeNamespace(String prefix, String namespaceURI)
            throws XMLStreamException {
        writer.writeNamespace(prefix, namespaceURI);
    }
    
    @Override
    public void writeProcessingInstruction(String target, String data)
            throws XMLStreamException {
        writer.writeProcessingInstruction(target, data);
    }
    
    @Override
    public void writeProcessingInstruction(String target)
            throws XMLStreamException {
        writer.writeProcessingInstruction(target);
    }
    
    @Override
    public void writeStartDocument() throws XMLStreamException {
        writer.writeStartDocument();
    }
    
    @Override
    public void writeStartDocument(String encoding, String version)
            throws XMLStreamException {
        writer.writeStartDocument(encoding, version);
    }
    
    @Override
    public void writeStartDocument(String version) throws XMLStreamException {
        writer.writeStartDocument(version);
    }
    
    @Override
    public void writeStartElement(String prefix, String localName,
            String namespaceURI) throws XMLStreamException {
        writer.writeStartElement("", localName, namespaceURI);
        if(null != namespaceURI && namespaceURI.length() > 0) {
            String currentDefaultNS = nc.getNamespaceURI("");
            if(!namespaceURI.equals(currentDefaultNS)) {
                writeDefaultNamespace(namespaceURI);
                nc.setDefaultNS(namespaceURI);
            }
        }
    }
    
    @Override
    public void writeStartElement(String namespaceURI, String localName)
            throws XMLStreamException {
        writer.writeStartElement(namespaceURI, localName);
    }
    
    @Override
    public void writeStartElement(String localName) throws XMLStreamException {
        writer.writeStartElement(localName);
    }
    
    public static class ProxyNameSpaceContext implements NamespaceContext {
    
        private String defaultNS = "";
    
        public void setDefaultNS(String ns) {
            defaultNS = ns;
        }
    
        @Override
        public String getNamespaceURI(String prefix) {
            if("".equals(prefix)) {
                return defaultNS;
            }
            return null;
        }
    
        @Override
        public String getPrefix(String namespaceURI) {
            return "";
        }
    
        @Override
        public Iterator<?> getPrefixes(String namespaceURI) {
            return null;
        }
    
    }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to use JAXB to unmarshal this file into Java objects. I know
I have always been using jaxb for parsing XML files into java object. This
I have some jaxb objects (instantiated from code generated from xsd by jaxb) that
We have this JAXB annotation: @XmlElement(name = Strategy, required = true) protected List<Strategy> strategy;
I have a JAXB setup where I use a @XmlJavaTypeAdapter to replace objects of
I have a project that does JAXB generation with framework.xsd. This generates a jar
I want to generate java code from xsd using JAXB 2.1 XJC. I have
I'm new to JAXB and I want to marshal and un-marshal XML/Objects to Objects/XML.
I have a library of JAXB/Entity objects I am using to unmarshall a xml
We have been using JAXB 2.1 for a long time in our system. We

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.