TOC PREV NEXT INDEX


Sized BIT STRING



The ASN.1 BIT STRING type may contain a size constraint. This is converted into minLength and maxLength facets in the generated XSD definition:

ASN.1 production:

TypeName ::= BIT STRING (SIZE (lower..upper))

Generated XSD code:

<xsd:simpleType name="TypeName">
<xsd:restriction base="asn1:BitString">
<xsd:minLength value="lower"/>
<xsd:maxLength value="upper"/>
</xsd:restriction>
</xsd:simpleType>



Objective Systems, Inc.

55 Dowlin Forge Rd
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