Next in thread → Next in month →

RE: [xml-dev] The prefix "fgdc" for element "fgdc:fgdc" is not bound

From
Nassar, Anthony <>
To
Fraser Goffin <>
Date
2007-12-13T13:51:42Z
ID
<>
Thread
RE: [xml-dev] The prefix "fgdc" for element "fgdc:fgdc" is not bound
Some part of me was hoping that this would be more difficult. Thanks,
Fraser!

-----Original Message-----
From: Fraser Goffin [mailto:] 
Sent: Thursday, December 13, 2007 4:05 AM
To: Nassar, Anthony
Cc: 
Subject: Re: [xml-dev] 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>
Next in thread → Next in month →