The schema parser is able to parse the ComplexTypes of form -
xsd:sequence
/xsd:sequence
/xsd:complexType
But it is not able to parse the ComplexTypes of form -
xsd:complexType
xsd:sequence
/xsd:sequence
/xsd:complexType
/xsd:element
In the later form it considers "PersonType" to be just an Element and not ComplexType. Hence the elements included in it are not parsed at all. Does anyone have a solution for this ?
The schema parser is able to parse the ComplexTypes of form -