I am receiving a valid XML from server. lets say
XSD
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
<xs:element name="rootElement">
<xs:complexType>
<xs:sequence>
<xs:element ref="elementOne"/>
<xs:element ref="elementTwo"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="elementOne" type="elementOneType"/>
<xs:complexType name="elementOneType">
<xs:sequence>
<xs:element ref="childOne" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:element name="childOne" type="childOneType"/>
<xs:complexType name="childOneType" mixed="true">
<xs:attribute name="One" type="xs:string" use="optional"/>
<xs:attribute name="Two" type="xs:NMTOKEN" use="optional"/>
<xs:attribute name="Three" type="xs:string" use="optional"/>
</xs:complexType>
<xs:element name="elementTwo" type="elementTwoType"/>
<xs:complexType name="elementTwoType">
<xs:sequence>
<xs:element name="childTwo" type="childTwoType" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="childTwoType" mixed="true">
<xs:sequence>
<xs:element ref="nestedChild" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="One" type="xs:string" use="optional"/>
<xs:attribute name="Two" type="xs:NMTOKEN" use="optional"/>
<xs:attribute name="Three" type="xs:string" use="optional"/>
</xs:complexType>
<xs:element name="nestedChild" type="nestedChildType"/>
<xs:complexType name="nestedChildType">
<xs:attribute name="test" type="xs:string" use="required"/>
</xs:complexType>
</xs:schema>
XML
<?xml version="1.0" encoding="UTF-8"?>
<rootElement>
<elementOne>
<childOne One="532" Two="938" Three="changed"/>
</elementOne>
<elementTwo>
<childTwo One="532" Two="532" Three="68d53"/>
</elementTwo>
</rootElement>
Could someone guide me what would be possible reason? I am unable to debugg from where should i start. the nestedChild is optional. so whenever JAXB parse the xml, it parse it in a way that if my xml doesn't have nestedChild, it shows 1 (empty object). if it has one nestedChild it shows 2, one valid and the other is empty. the transformation of valid child is okay, and obviously when the system try to convert empty object it throws exception ..
its jaxb v 1.3