Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can one ignore Unexpected element situation in JAXB ans still get all other kind of javax.xml.bind.UnmarshalException?

obj = unmler.unmarshal(new StringReader(xml))

Notice i still want to get the obj result of the xml parsing.

share|improve this question

2 Answers

up vote 4 down vote accepted

The solution.

In JAXB implementing ValidationEventHandler like so:

class CustomValidationEventHandler implements ValidationEventHandler{

    public boolean handleEvent(ValidationEvent evt) {
        System.out.println("Event Info: "+evt);
        if(evt.getMessage().contains("Unexpected element"))
            return true;
        return false;
    }

}

Then

Unmarshaller u = ...;

u.setEventHandler(new CustomValidationEventHandler());

u.unmarshal(new StringReader(xml));
share|improve this answer

I think that should be the other way around, shouldn't it? If the event pertains to an unexpected element, you want to return true so that things continue.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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