Hi,
Is there a way for Java applications to get the order
of sequence elements? For example,
<xsd:complexType name="MyObject">
<xsd:sequence>
<xsd:element name="A" type="xsd:string"/>
<xsd:element name="B" type="xsd:string"/>
</...
</...
How can I know that A is before B using the generated classes?
-
Jimmy