Hi,
I would like to use Xerces for batch XML validation but I stumbled into a
following problem.
Xerces does not seem to load the schema file from the same directory if I
use the
targetNamespace stuff in the .xsd file.
With xsi:noNamespaceSchemaLocation in the XML file and no targetNamespace in
the XSD
file it works fine.
Could anyone tell me what am I doing wrong?
Is there a good example somewhere using Xerces with targetNamespace in the
XSD files?
Thanks in advance,
Gergely
The root element in the XML file starts like this:
<personnel
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://mysite.com/Personal/"
xsi:schemaLocation=". personal.xsd">
The top lines of the .xsd files are:
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema
targetNamespace="http://mysite.com/Personal/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns="http://mysite.com/Personal/"
elementFormDefault="qualified"
attributeFormDefault="unqualified">
Xerces version 2.1.0
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]