Given a XSD like this one:
<!-- ... -->
<xsd:element name="MyElement" type="ParentType" />
<!-- ... -->
<xsd:complexType name="ParentType">
<xsd:sequence>
<!-- ... -->
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="ChildType1">
<xsd:complexContent>
<xsd:extension base="ParentType">
<xsd:sequence>
<!-- ... -->
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<!-- ... -->
could JAXB2 be configured to fall-back to the base type ParentType when it has to unmarshall a XML which contains an element of an unknown type, like in the next example:
<!-- ... -->
<MyElement xsi:type="ChildType2">
<!-- ... -->
</MyElement>
<!-- ... -->
Normally, in this situation, JAXB throws an exception which says that ChildType2 is an unrecognised type.
xsi:typein an inheritance hierarchy (blog.bdoughan.com/2010/11/…). Your question is specifically how to handle the case wherexsi:typedoes not correspond to a class that JAXB is aware of? – Blaise Doughan Sep 2 '11 at 17:53