Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


unhandled cos-all-limited 1.2

From: Kasimier Buchcik <kbuchcik@---------.-->
To: XML-SCHEMA <xmlschema-dev@--.--->
Date: 6/7/2005 7:59:00 PM
Hi,

FYI, the following schemata should all be invalid - at least I
think so - according to cos-all-limited (1.2).

Results of some schema processors:

processor         A        B        C
Xerces-J 2.6.2    invalid  invalid  valid
MSXML 4.0         valid    valid    valid
XSV 2.10          valid    valid    valid

schema A
--------
<!-- extension, results in (xs:sequence(xs:all, xs:sequence))-->
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
	targetNamespace="urn:test:foo"
	xmlns:f="urn:test:foo"
	elementFormDefault="qualified">

	<xsd:complexType name="typeA">
		<xsd:all>
			<xsd:element name="boo"/>
		</xsd:all>
	</xsd:complexType>
	<xsd:complexType name="typeB">
		<xsd:complexContent>
			<xsd:extension base="f:typeA">
				<xsd:sequence>		
					<xsd:element name="moo"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>
	<xsd:element name="foo" type="f:typeB"/>

</xsd:schema>

schema B
--------
<!-- group ref., results in (xs:sequence(xs:all)) -->
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
	targetNamespace="urn:test:foo"
	xmlns:f="urn:test:foo"
	elementFormDefault="qualified">

	<xsd:group name="group">
		<xsd:all>
			<xsd:element name="boo"/>
		</xsd:all>
	</xsd:group>
	<xsd:complexType name="type">
		<xsd:sequence>
			<xsd:group ref="f:group"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:element name="foo" type="f:type"/>

</xsd:schema>

schema C
--------
<!-- group ref., particle with maxOccurs of 5 -->
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
	targetNamespace="urn:test:foo"
	xmlns:f="urn:test:foo"
	elementFormDefault="qualified">

	<xsd:group name="group">
		<xsd:all>
			<xsd:element name="boo"/>
		</xsd:all>
	</xsd:group>
	<xsd:complexType name="type">
		<xsd:group ref="f:group" maxOccurs="5"/>		
	</xsd:complexType>
	<xsd:element name="foo" type="f:type"/>

</xsd:schema>

Regards,

Kasimier

From GrobleDC@t... Wed Jun 08 17:27:01 2005
Received: from wiggum.w3.org ([128.30.52.23])
	by frink.w3.org with esmtp 


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent