TOC PREV NEXT INDEX


SEQUENCE



An ASN.1 SEQUENCE is a constructed type consisting of a series of element definitions that must appear in the specified order. This is very similar to the XSD sequence complex type and is therefore mapped to this type.

The basic mapping is as follows:

ASN.1 production:

TypeName ::= SEQUENCE {
element1-name element1-type,
element2-name element2-type,
...
}

Generated XSD code:

<xsd:complexType name="TypeName">
<xsd:sequence>
<xsd:element name="element1-name" type="element1-type"/>
<xsd:element name="element2-name" type="element2-name"/>
...
</xsd:sequence>
</xsd: complexType>



Objective Systems, Inc.

102 Pickering Way, Suite #506
Exton, Pennsylvania 19341
http://www.obj-sys.com
Phone: (484) 875-9841
Toll-free: (877) 307-6855 (US only)
Fax: (484) 875-9830
info@obj-sys.com
TOC PREV NEXT INDEX