infinite loop

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