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
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 error line 2 column 209 The schemaLocation attribute does not contain
pair of values