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

I am trying to unmarshal a XML into a class whose design are as below

Class A Class B Class C Class D

The relationship between Class A and Class B is one to one bidirectional. The relationship between Class B and Class C is many to one unidirectional The relationship between Class B and Class D is many to one unidirectional

Class A is root element of my xml schema which is generated through schema gen.

While unmarshalling a xml file with this relaionship, it is giving an array out of bound exception.

But if I unmarshal a xml with only Class C or Class D, it is able to unmarshal it.

I think because of multiple many to one relationship in Class B, unmarshalling is trying to create every combination between Class C and Class D. But I am not very sure of my understanding.

Please suggest some solution

share|improve this question
1  
FYI - This issue is also being address on the EclipseLink forum: eclipse.org/forums/index.php/mv/msg/390775/930509/#msg_930509 – Blaise Doughan Oct 2 '12 at 15:12

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.