[Home] [By Thread] [By Date] [Recent Entries]

  • From: "Nassar, Anthony" <ANassar@H...>
  • To: "Fraser Goffin" <goffinf@g...>
  • Date: Thu, 13 Dec 2007 08:51:42 -0500

Some part of me was hoping that this would be more difficult. Thanks,
Fraser!

-----Original Message-----
From: Fraser Goffin [mailto:goffinf@g...] 
Sent: Thursday, December 13, 2007 4:05 AM
To: Nassar, Anthony
Cc: xml-dev@l...
Subject: Re:  The prefix "fgdc" for element "fgdc:fgdc" is not
bound

You can still use a XSD to validate an instance if that XSD doesn't
declare any target namespace. For example :-


<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified" attributeFormDefault="unqualified">

<xs:element name="Root">
    <xs:complexType>
        <xs:sequence>
            <xs:element name="firstChild" type="xs:string"/>
            <xs:element name="firstSibling" type="xs:integer"/>
        </xs:sequence>
    </xs:complexType>
</xs:element>

</xs:schema>

you can determine that this instance in not schema valid :-

<Root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="Nonamepsace_Schema.xsd">
	<firstChild>String</firstChild>
	<firstSibling>this should be an integer to be
valid</firstSibling> </Root>



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index]


Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member