How can I implement an 'xsd:sequence' in a Node? I want to create a node confirming to the following schema -
 
<xsd:element name="instanceDetails">
        <xsd:complexType>
                <xsd:sequence>
                  <xsd:element ref="description" minOccurs="0" maxOccurs="unbounded" />
                  <xsd:element ref="overviewDoc" minOccurs="0" />
                  <xsd:element ref="instanceParms" minOccurs="0" />
          </xsd:sequence>
   </xsd:complexType>
</xsd:element>
 
I dont want to raise an exception if a user appends the 'overviewDoc' node before the 'description' node to the 'instanceDetails' node. Instread, I want to do the sorting myself.
 
Regards,
Satyendra.

Reply via email to