why
---
Key: XERCESC-1596
URL: http://issues.apache.org/jira/browse/XERCESC-1596
Project: Xerces-C++
Type: Bug
Components: Validating Parser (Schema) (Xerces 1.5 or up only)
Versions: 2.4.0
Environment: win2000, CBuilder 6
http://www.cbr.ru/analytics/Formats/UFEBS_EDExamples.zip - ED101_1
http://www.cbr.ru/analytics/Formats/UFEBS_XMLSchemas_v1_1_2.zip - *.xsd
Reporter: frofis
XercesDOMParser *parser = new XercesDOMParser;
parser->setValidationScheme(true);
parser->setDoNamespaces(true);
parser->setDoSchema(true);
parser->setDoValidation(true);
parser->setExternalSchemaLocation("file:///C:/CBuilder/Xml_Pr/*.xsd");
ErrorRep *errRep = new ErrorRep();
parser->setErrorHandler(errRep);
try {
parser->parse("file:///C:/CBuilder/Xml_Pr/ED101_1.xml");
}
catch (...) {
ShowMessage("...");
}
delete errRep;
delete parser;
Fatal rror line 2 column 209 The schemaLocation attribute does not contain
pair of values
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]