vote up 1 vote down star

My schema specifies a namespace, but the documents don't. What's the simplest way to ignore namespace during JAXB unmarshalling (XML -> object)?

In other words, I have

<foo><bar></bar></foo>

instead of,

<foo xmlns="http://tempuri.org/"><bar></bar></foo>
flag

2 Answers

vote up 2 vote down check

I believe you must add the namespace to your xml document, with, for example, the use of a SAX filter.

That means:

  • Define a ContentHandler interface with a new class which will intercept SAX events before JAXB can get them.
  • Define a XMLReader which will set the content handler

then link the two together:

public static Object unmarshallWithFilter(Unmarshaller unmarshaller,
java.io.File source) throws FileNotFoundException, JAXBException 
{
    FileReader fr = null;
    try {
        fr = new FileReader(source);
        XMLReader reader = new NamespaceFilterXMLReader();
        InputSource is = new InputSource(fr);
        SAXSource ss = new SAXSource(reader, is);
        return unmarshaller.unmarshal(ss);
    } catch (SAXException e) {
        //not technically a jaxb exception, but close enough
        throw new JAXBException(e);
    } catch (ParserConfigurationException e) {
        //not technically a jaxb exception, but close enough
        throw new JAXBException(e);
    } finally {
        FileUtil.close(fr); //replace with this some safe close method you have
    }
}
link|flag
vote up 0 vote down

Another way to add a default namespace to an XML Document before feeding it to JAXB is to use JDom:

  1. Parse XML to a Document
  2. Iterate through and set namespace on all Elements
  3. Unmarshall using a JDOMSource

Like this:

public class XMLObjectFactory {
    private static Namespace DEFAULT_NS = Namespace.getNamespace("http://tempuri.org/");

    public static Object createObject(InputStream in) {
    	try {
    		SAXBuilder sb = new SAXBuilder(false);
    		Document doc = sb.build(in);
    		setNamespace(doc.getRootElement(), DEFAULT_NS, true);
    		Source src = new JDOMSource(doc);
    		JAXBContext context = JAXBContext.newInstance("org.tempuri");
    		Unmarshaller unmarshaller = context.createUnmarshaller();
    		JAXBElement root = unmarshaller.unmarshal(src);
    		return root.getValue();
    	} catch (Exception e) {
    		throw new RuntimeException("Failed to create Object", e);
    	}
    }

    private static void setNamespace(Element elem, Namespace ns, boolean recurse) {
    	elem.setNamespace(ns);
    	if (recurse) {
    		for (Object o : elem.getChildren()) {
    			setNamespace((Element) o, ns, recurse);
    		}
    	}
    }
link|flag
The only problem with this though is that you have to read the entire XML file into memory, which isn't an option with massive XML files. – Brian Jul 24 at 0:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.