Re: [xml-dev] Associating an XML Schema with a XML Document

From
Christian Nentwich <>
To
"Luciano Resende (Discussion List)" <>
Date
2003-10-30T09:09:18Z
ID
<>
Thread
Re: [xml-dev] Associating an XML Schema with a XML Document
> xsi:schemaLocation="file://d//ibm//dev//workspaces//dominoportal//dominoadapter booksextended.xsd">

Ok, let me guess.. your schema declares a http://www.books.org
namespace, but that bit is missing from your schema location. You also
have a space in your physical schema location. Try this (note the %20
instead of the space):

xsi:schemaLocation="http://www.books.org
file://d//ibm//dev//workspaces//dominoportal//dominoadapter%20booksextended.xsd"

Christian