My transformation dont work as expected.
I have imported a xsd file where there is a xs choice into xs sequence.
ref3 work but ref1 and ref2 do not.
Do you know about this?
=================================
<xs:element name="A">
<xs:complexType>
<xs:sequence>
<xs:element ref="ref3"/>
<xs:choice>
<xs:element maxOccurs="1" minOccurs="0" ref="ref1"/>
<xs:element maxOccurs="1" minOccurs="0" ref="ref2"/>
</xs:choice>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ref1">
<xs:complexType/>
</xs:element>
<xs:element name="ref2">
<xs:complexType/>
</xs:element>
<xs:element name="ref3">
<xs:complexType/>
</xs:element>
=============================