 |
 |
 |
Hi Erik,
Erik Johnson <ejohnson@e...> writes:
> But after thinking about it, I don't think that the content model is
> ambiguous.
It helps to remove all the syntactic sugar to the see the problem clearly:
<xs:element name="ElementC1">
<xs:complexType>
<xs:sequence>
<xs:choice>
<xs:choice>
<xs:element name="ElementB1" />
<xs:sequence>
<xs:element name="ElementA1"/>
</xs:sequence>
</xs:choice>
<xs:sequence>
<xs:element name="ElementA1"/>
</xs:sequence>
</xs:choice>
</xs:sequence>
</xs:complexType>
</xs:element>
We can further simplify this schema fragment by replacing
<xs:sequence>
<xs:element name="ElementA1"/>
</xs:sequence>
with just
<xs:element name="ElementA1"/>
which gives us:
<xs:element name="ElementC1">
<xs:complexType>
<xs:sequence>
<xs:choice>
<xs:choice>
<xs:element name="ElementB1" />
<xs:element name="ElementA1"/> <!-- (1) -->
</xs:choice>
<xs:element name="ElementA1"/> <!-- (2) -->
</xs:choice>
</xs:sequence>
</xs:complexType>
</xs:element>
Now when parser sees ElementA1 inside ElementC1 it has to ways of
associating a schema declarations to ElementA1: it can be ElementA1
from line (1) or it can be ElementA1 from line (2). Thus this schema
is ambiguous.
hth,
-boris
--
Boris Kolpackov
Code Synthesis Tools CC
http://www.codesynthesis.com
Open-Source, Cross-Platform C++ XML Data Binding
From Ralf.Lammel@m... Tue Nov 28 06:45:07 2006
Received: from lisa.w3.org ([128.30.52.41])
by frink.w3.org
|
 | 

|  |
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.
|  |
| |
 |
 |
 |