show/hide this revision's text 3 added 16 characters in body

I've come up with an approach that seems to work. I first load the schema's explicitly, then add themn to the schemacollection. Next I load the xml-file and assign the schemacollection to its schemas property. The solution now looks like this:

uses MSXML2_TLB  
That is:  
// Type Lib: C:\Windows\system32\msxml4.dll  
// LIBID: {F5078F18-C551-11D3-89B9-0000F81FE221}

function TfrmMain.ValidXML(
    const xmlFile: String; 
    out err: IXMLDOMParseError): Boolean;
var
    xml, xsd: IXMLDOMDocument2;
    cache: IXMLDOMSchemaCollection;
begin
    xsd := CoDOMDocument40.Create;
    xsd.Async := False;
    xsd.load('http://the.uri.com/schemalocation/schema.xsd');

    cache := CoXMLSchemaCache40.Create;
    cache.add('http://the.uri.com/schemalocation', xsd);

    xml := CoDOMDocument40.Create;
    xml.async := False;
    xml.schemas := cache;

    Result := xmlDoc.load(xmlFile);
    if not Result then
      err := xmlDoc.parseError
    else
      err := nil;
end;

It is important to use XMLSchemaCache40 or later. Earlier versions don't follow the W3C XML Schema standard, but only validate against XDR Schema, a MicroSoft specification.

The disadvantage of this solution is that I need to load the schema's explicitly. It seems to me that it should be possible to retrieve them automatically.

show/hide this revision's text 2 made the code work

I've come up with the following an approach that seems to work. I first load the schema's explicitly, then add themn to the schemacollection. Next I load the xml-file and assign the schemacollection to its schemas property. The solution now looks like this:

uses MSXML2_TLB
That is:
// Type Lib: C:\Windows\system32\msxml4.dll
// LIBID: {F5078F18-C551-11D3-89B9-0000F81FE221}

function TfrmMain.ValidateXMLFileTfrmMain.ValidXML(
    const xmlFile: String; 
    out err: IXMLDOMParseError): Boolean;
var
    xml, xsd: IXMLDOMDocument2;
    err: IXMLDOMParseError;
    cache: IXMLDOMSchemaCollection;
begin
    xsd := ComsDOMDocument.CreateCoDOMDocument40.Create;
    xsd.Async := False;
    xsd.load('schema.xsd')xsd.load('http://the.uri.com/schemalocation/schema.xsd');

    cache := ComsXMLSchemaCache.CreateCoXMLSchemaCache40.Create;
    cache.add('http://the.uri.com/schemalocation', xsd);

    xml := ComsDOMDocument.CreateCoDOMDocument40.Create;
    xml.async := False;
    xml.schemas := cache;

    Result := xmlDoc.load('Data/antwoordbericht0204.xml')xmlDoc.load(xmlFile);
    if not Result then
      err := xmlDoc.parseError
    else
      err := nil;
end;

It is important to use XMLSchemaCache40 or later. Earlier versions don't follow the W3C XML Schema standard, but only validate against XDR Schema, a MicroSoft specification.

The disadvantage here of this solution is that I need to load the schema's explicitly. It seems to me that it should be possible to retrieve them automatically.

show/hide this revision's text 1

I've come up with the following approach that seems to work:

function TfrmMain.ValidateXMLFile: Boolean;
var
    xml, xsd: IXMLDOMDocument2;
    err: IXMLDOMParseError;
    cache: IXMLDOMSchemaCollection;
begin
    xsd := ComsDOMDocument.Create;
    xsd.Async := False;
    xsd.load('schema.xsd');

    cache := ComsXMLSchemaCache.Create;
    cache.add('http://the.uri.com/schemalocation', xsd);

    xml := ComsDOMDocument.Create;
    xml.async := False;
    xml.schemas := cache;

    Result := xmlDoc.load('Data/antwoordbericht0204.xml');
    if not Result then
      err := xmlDoc.parseError
    else
      err := nil;
end;

The disadvantage here is that I need to load the schema's explicitly. It seems to me that it should be possible to retrieve them.