XML.orgXML.org
FOCUS AREAS |XML-DEV |XML.org DAILY NEWSLINK |REGISTRY |RESOURCES |ABOUT
OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index]
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:goffinf@googlemail.com] 
Sent: Thursday, December 13, 2007 4:05 AM
To: Nassar, Anthony
Cc: xml-dev@lists.xml.org
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>



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


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

Copyright 1993-2007 XML.org. This site is hosted by OASIS