DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=9580>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=9580 Identity Constraint not matched for nested element. Summary: Identity Constraint not matched for nested element. Product: Xerces2-J Version: 2.0.1 Platform: PC OS/Version: Windows NT/2K Status: NEW Severity: Normal Priority: Other Component: XML Schema Structures AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] Example Schema: <?xml version="1.0" encoding="UTF-8" ?> <schema targetNamespace="http://www.bogus.com/car" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:car="http://www.bogus.com/car" elementFormDefault="qualified"> <element name="cars"> <complexType> <sequence> <element ref="car:group" minOccurs="0" maxOccurs="1"/> <element ref="car:car" minOccurs="0" maxOccurs="unbounded"/> </sequence> </complexType> <key name="keyGroup"> <selector xpath=".//car:group"/> <field xpath="@name"/> </key> <keyref name="groupRef" refer="car:keyGroup"> <selector xpath=".//car:car"/> <field xpath="@group"/> </keyref> </element> <element name="group"> <complexType> <sequence> <element ref="car:group" minOccurs="0" maxOccurs="1"/> </sequence> <attribute name="name" type="string"/> </complexType> </element> <element name="car"> <complexType> <attribute name="name" type="string"/> <attribute name="group" type="string"/> </complexType> </element> </schema> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
