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=9103>. 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=9103 no error generated with non-schema conformant file Summary: no error generated with non-schema conformant file Product: Xerces-C++ Version: 1.7.0 Platform: Other OS/Version: Other Status: NEW Severity: Normal Priority: Other Component: Validating Parser (Schema) (Xerces 1.5 or up only) AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] the person tag should be prefixed. Xerces-J does not pass this file. I also tried this with the nightly build (2002-05-10)with the same results. <?xml version="1.0" encoding="UTF-8"?> <my:addressbook xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:my="http://david.com/david-schema" xsi:schemaLocation="http://david.com/david-schema david3.xsd"> <person>David</person> </my:addressbook> <?xml version="1.0" encoding="UTF-8"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:my="http://david.com/david-schema" targetNamespace="http://david.com/david-schema" elementFormDefault="qualified" > <xs:element name="addressbook"> <xs:complexType> <xs:sequence> <xs:element ref="my:person" minOccurs='1' maxOccurs='1'/> </xs:sequence> </xs:complexType> </xs:element> <xs:element name="person" type="xs:string"/> </xs:schema> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]