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

I have a JAXB web service that does not expect the element Id to be passed across, and a client that passes that element anyhow.

The version of the web service currently in production silently ignores that unexpected element, but the version in QA complains. Tracing the XML of inbound requests, I confirmed the Id element is sent both to the production and QA versions of the service.

The error message in QA is:

org.apache.cxf.interceptor.Fault: Unmarshalling Error: unexpected element (uri:"http://mydomain.com/transaction", local:"Id"). Expected elements are...

The message is pretty clear, but the solution is not as the client is widely deployed.

As a first step, I would like to try and understand why the production version accepts this extra element while the QA version does not. There are not many differences between the two releases.

Suggestions where to look?

share|improve this question
Are you injecting a Schema into either version, for validation? – skaffman Apr 28 '10 at 8:49
@skaffman: No, there's no schema. – Eric J. Apr 28 '10 at 15:29

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.