- From: oliver fodor <fodor@itc.it>
- Date: Wed, 08 Jan 2003 10:07:27 +0100
- To: xmlschema-dev@w3.org
hi! does the XML Schema specification allow the following combination of complex types? it might lead to an infinite loop ... <xs:complexType name="bType" mixed="true"> <xs:choice minOccurs="0" maxOccurs="unbounded"> <xs:element name="i" type="iType" /> <xs:element name="ul" type="ulType" /> </xs:choice> </xs:complexType> <xs:complexType name="iType" mixed="true"> <xs:choice minOccurs="0" maxOccurs="unbounded"> <xs:element name="b" type="bType" /> <xs:element name="ul" type="ulType" /> </xs:choice> </xs:complexType> thanks! oliver
Received on Wednesday, 8 January 2003 04:15:51 UTC