I have following XSD which i used to generated JAXB objects
<xs:complexType name="packageType">
<xs:sequence>
<xs:element ref="package" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="dependencies" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="id" type="xs:NMTOKEN" use="required"/>
</xs:complexType>
Now, If i receive an XML
- no dependency tag
- empty dependency tag i.e.
Sample XML
<package id="FA33" required="false" empty="false">
<dependencies />
</package>
In the above example, If i remove the "dependencies" empty tag, JAXB throws "unexpected end of package" error.
Since the minOccours is there, both of these scenario shouldn't make a difference. But in my case, JAXB is unable to unmarsh the given xml in case1 i.e. if there is no dependency tag. If an empty dependencies tag is there then it goes fine.
Is it expected behavior or its doing something wrong?
P.S: I am using Jaxb 1.3