OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

 


 

   RE: [xml-dev] Schema validators

[ Lists Home | Date Index | Thread Index ]

MSXML doesn't error because your schema isn't written correctly. I changed your schema to the one below and got the appropriate error. 
 
<xsd:schema targetNamespace="http://www.test.co.uk"; xmlns="http://www.test.co.uk"; xmlns:xsd="http://www.w3.org/2001/XMLSchema"; elementFormDefault="qualified" attributeFormDefault="unqualified"  xmlns:t="http://www.test.co.uk";>
        <xsd:element name="root" type="myList">
                <xsd:unique name="myId">
                        <xsd:selector xpath="./t:a"/>
                        <xsd:field xpath="@id"/>
                </xsd:unique>
        </xsd:element>
        <xsd:complexType name="myList">
                <xsd:sequence>
                        <xsd:element name="a" maxOccurs="unbounded">
                                <xsd:complexType>
                                        <xsd:attribute name="id" type="xsd:NCName"/>
                                </xsd:complexType>
                        </xsd:element>
                </xsd:sequence>
        </xsd:complexType>
</xsd:schema>

________________________________

From: Morcom, Harvey [mailto:Harvey.Morcom@KPMG.co.uk]
Sent: Thu 8/21/2003 5:13 AM
To: xml-dev@lists.xml.org
Subject: [xml-dev] Schema validators



I am not sure if this is the right place to post but I hope someone can...

I am trying to find a validating parser which supports W3C XML Schema, is there one that supports everything? The reason I ask is that I am trying to enforce unique values across an entire document and MSXML 4.0 did not report an error when values were duplicated (sample files below). The XML validating parser used in XMLSpy and Xerces both reported an error. 

correct_0.xml
<?xml version="1.0" encoding="UTF-8"?>
<root xmlns="http://www.test.co.uk"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://www.test.co.uk correct_0.xsd">
        <a id="x"/>
        <a id="y"/>
        <a id="y"/>
</root>

correct_0.xsd
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema targetNamespace="http://www.test.co.uk"; xmlns="http://www.test.co.uk"; xmlns:xsd="http://www.w3.org/2001/XMLSchema"; elementFormDefault="qualified" attributeFormDefault="unqualified">
        <xsd:element name="root" type="myList">
                <xsd:unique name="myId">
                        <xsd:selector xpath="./a"/>
                        <xsd:field xpath="@id"/>
                </xsd:unique>
        </xsd:element>
        <xsd:complexType name="myList">
                <xsd:sequence>
                        <xsd:element name="a" maxOccurs="unbounded">
                                <xsd:complexType>
                                        <xsd:attribute name="id" type="xsd:NCName"/>
                                </xsd:complexType>
                        </xsd:element>
                </xsd:sequence>
        </xsd:complexType>
</xsd:schema>

Finally, is there a way of validating a number of XML files contained in directories and sub-directories in one go similar to the xslt directory transform available in Saxon.

Thanks in advance
Harvey

> Harvey Morcom
> Knowledge Analyst
> harvey.morcom@kpmg.co.uk
> Tel: 782 8695 (020 7694 8695)
>


                Email Disclaimer

This email has been sent from KPMG LLP, a UK limited
liability partnership, or from one of the companies within
its control (which include KPMG Audit Plc , KPMG United
Kingdom Plc and KPMG UK Limited). The information in
this email is confidential and may be legally privileged.
It is intended solely for the addressee.  Access to this
email by anyone else is unauthorised. If you are not the
intended recipient, any disclosure, copying, distribution
or any action taken or omitted to be taken in reliance on it,
 is prohibited and may be unlawful.  When addressed to
our clients any opinions or advice contained in this email
are subject to the terms and conditions expressed in the
governing KPMG client engagement letter.


-----------------------------------------------------------------
The xml-dev list is sponsored by XML.org <http://www.xml.org>, an
initiative of OASIS <http://www.oasis-open.org>

The list archives are at http://lists.xml.org/archives/xml-dev/

To subscribe or unsubscribe from this list use the subscription
manager: <http://lists.xml.org/ob/adm.pl>







 

News | XML in Industry | Calendar | XML Registry
Marketplace | Resources | MyXML.org | Sponsors | Privacy Statement

Copyright 2001 XML.org. This site is hosted by OASIS