show/hide this revision's text 7 added 36 characters in body

Hi,

I'm trying to validate an XML file against the schema's it references. (Using Delphi and MSXML2_TLB.) The (relevant part of the) code looks something like this:

procedure TfrmMain.ValidateXMLFile;
var
    xml: IXMLDOMDocument2;
    err: IXMLDOMParseError;
    schemas: IXMLDOMSchemaCollection;
begin
    xml := ComsDOMDocument.Create;
    if xml.load('Data/file.xml') then
    begin
        schemas := xml.namespaces;
        if schemas.length > 0 then
        begin
            xml.schemas := schemas;
            err := xml.validate;
        end;
    end;
end;

This has the result that cache is loaded (schemas.length > 0), but then the next assignment raises an exception: "only XMLSchemaCache-schemacollections can be used."

How should I go about this?

Thanks, Miel.

show/hide this revision's text 6 restatement of question

validate xml against xsd schema validation with msxml in delphi

procedure TfrmMain.ValidateXMLFile;    xml: = ComsDOMDocument.CreateIXMLDOMDocument2;    xml.async err: IXMLDOMParseError;    schemas: IXMLDOMSchemaCollection;    xml := FalseComsDOMDocument.Create;    if not xml.load('Data/file.xml') then    ShowError(xml.parseError)        schemas := ComsXMLSchemaCache.Create;    //[*]    schemas.addCollection(xml.namespaces)xml.namespaces;        //[**]    if schemas.length > 0 then        if err.errorCode <> 0 then        ShowError(err)end;

This seems to be what the msdn site suggests.

The problem is that schemas.length remains 0 (zero), which implies that no schemas are added to the cache. Validate will therefore try to validate against a DTD, which it can't find. Why are no schemas found? (The xml file is valid according to the W3C validator.)

[Further research: replacing the lines marked [*] and [**] with

    schemas := xml.namespacesend;

This has the result that cache is loaded (schemas.length > 0), but then the next assignment raises an exception: "only XMLSchemaCache-schemacollections can be used."The entire procedure now looks like this:

procedure TfrmMain.ValidateXMLFile;    xml: IXMLDOMDocument2;    err: IXMLDOMParseError;    schemas: IXMLDOMSchemaCollection;    xml := ComsDOMDocument.Create;    if xml.load('Data/file.xml') then        schemas := xml.namespaces;        if schemas.length > 0 then            xml.schemas := schemas;            err := xml.validate;        end;    end;

]

The answers so far use a rather different approach. Can anyone clarify why the approach above doesn't work?

show/hide this revision's text 5 Further clarification.

Hi,

I'm trying to validate an XML file against the schema's it references. (Using Delphi and MSXML2_TLB.) The (relevant part of the) code looks something like this:

xml := ComsDOMDocument.Create;
xml.async := False;
if not xml.load('Data/file.xml') then
    ShowError(xml.parseError)
else
begin
    schemas := ComsXMLSchemaCache.Create;    //[*]
    schemas.addCollection(xml.namespaces);   //[**]
    xml.schemas := schemas;
    err := xml.validate;
    if err.errorCode <> 0 then
        ShowError(err);
end;

This seems to be what the msdn site suggests.

The problem is that schemas.length remains 0 (zero), which implies that no schemas are added to the cache. Validate will therefore try to validate against a DTD, which it can't find. Why are no schemas found? (The xml file is valid according to the W3C validator.)

[Further research: replacing the lines marked [*] and [**] with

    schemas := xml.namespaces;

has the result that cache is loaded (schemas.length > 0), but then the next assignment raises an exception: "only XMLSchemaCache-schemacollections can be used." The entire procedure now looks like this:

procedure TfrmMain.ValidateXMLFile;
var
    xml: IXMLDOMDocument2;
    err: IXMLDOMParseError;
    schemas: IXMLDOMSchemaCollection;
begin
    xml := ComsDOMDocument.Create;
    if xml.load('Data/file.xml') then
    begin
        schemas := xml.namespaces;
        if schemas.length > 0 then
        begin
            xml.schemas := schemas;
            err := xml.validate;
        end;
    end;
end;

]

The answers so far use a rather different approach. Can anyone clarify why the approach above doesn't work?

Thanks, Miel.

show/hide this revision's text 4 Included results of further research.
show/hide this revision's text 3 Call for different answers.
show/hide this revision's text 2 Clarified the question.
show/hide this revision's text 1