Incorrect UPA violation error with xs:any and ##other
-----------------------------------------------------
Key: XERCESC-1655
URL: http://issues.apache.org/jira/browse/XERCESC-1655
Project: Xerces-C++
Issue Type: Bug
Components: Validating Parser (Schema) (Xerces 1.5 or up only)
Affects Versions: 2.7.0
Reporter: John Snelson
We are seeing a Unique Particle Attribution violation error occur on a schema
which I am sure shouldn't have this problem. The error is:
Parse error in document at line, 1, char 417. Parser message: Complex type
'dataType' violates the Unique Particle Attribution rule in its components
'##other' and 'data'
The schema that causes this is:
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="info:rfa/rfaRegistry/xmlSchemas/iwsaDeposit"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="info:rfa/rfaRegistry/xmlSchemas/iwsaDeposit">
<xs:element name="data" type="dataType"/>
<xs:complexType name="dataType">
<xs:sequence>
<xs:choice>
<xs:any namespace="##other" processContents="lax"/>
<xs:element name="data" type="xs:string"/>
</xs:choice>
</xs:sequence>
</xs:complexType>
</xs:schema>
The instance document that causes this:
<?xml version="1.0" encoding="UTF-8"?>
<da:data xmlns:da="info:rfa/rfaRegistry/xmlSchemas/iwsaDeposit"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:bl="blah"
xsi:schemaLocation="info:rfa/rfaRegistry/xmlSchemas/iwsaDeposit
D:/Data/eclipse/workspace/GDFRPrototype/xml/xsd/iwsaDeposit-2_TEST.xsd
info:rfa/rfaRegistry/xmlSchemas/adminData
D:/Data/eclipse/workspace/GDFRPrototype/xml/xsd/adminData.xsd">
<bl:other>Things</bl:other>
</da:data>
My understanding of W3C XML Schema is that the "##other" should not overlap
with the element declared in the schema's target namespace, and that therefore
this schema does not violate the UPA rule.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]