schema validation with msxml in delphi - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T07:34:56Zhttp://stackoverflow.com/feeds/question/446635http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/446635/schema-validation-with-msxml-in-delphi2schema validation with msxml in delphiMiel2009-01-15T13:01:37Z2009-07-02T17:26:39Z
<p>Hi,</p>
<p>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: </p>
<pre><code>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;
</code></pre>
<p>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."</p>
<p>How should I go about this?</p>
<p>Thanks, Miel.</p>
http://stackoverflow.com/questions/446635/schema-validation-with-msxml-in-delphi/449817#449817-1Answer by BennyBechDk for schema validation with msxml in delphiBennyBechDk2009-01-16T08:18:23Z2009-01-16T08:18:23Z<p>I have previosly validated usen the following code:</p>
<p>uses
Classes, XMLIntf, SysUtils;</p>
<pre><code>function ValidateXMLDoc(aXmlDoc: IXMLDocument): boolean;
var
validateDoc: IXMLDocument;
begin
validateDoc := TXMLDocument.Create(nil);
validateDoc.ParseOptions := [poResolveExternals, poValidateOnParse];
validateDoc.XML := aXmlDoc.XML;
validateDoc.Active := true;
Result := True;
end;
</code></pre>
http://stackoverflow.com/questions/446635/schema-validation-with-msxml-in-delphi/451489#4514890Answer by skamradt for schema validation with msxml in delphiskamradt2009-01-16T18:41:01Z2009-06-17T22:57:07Z<p>While BennyBechDk might be on the right track, I have a few problems with his code that I'm going to correct below:</p>
<pre><code>uses Classes, XMLIntf, xmlDoc, SysUtils;
function IsValidXMLDoc(aXmlDoc: IXMLDocument): boolean;
var
validateDoc: IXMLDocument;
begin
result := false; // eliminate any sense of doubt, it starts false period.
validateDoc := TXMLDocument.Create(nil);
try
validateDoc.ParseOptions := [poResolveExternals, poValidateOnParse];
validateDoc.XML := aXmlDoc.XML;
validateDoc.Active := true;
Result := True;
except
// for this example, I am going to eat the exception, normally this
// exception should be handled and the message saved to display to
// the user.
end;
end;
</code></pre>
<p>If you wanted the system to just raise the exception, then there is no reason to make it a function in the first place.</p>
<pre><code>uses Classes, XMLIntf, XMLDoc, SysUtils;
procedure ValidateXMLDoc(aXmlDoc: IXMLDocument);
var
validateDoc: IXMLDocument;
begin
validateDoc := TXMLDocument.Create(nil);
validateDoc.ParseOptions := [poResolveExternals, poValidateOnParse];
validateDoc.XML := aXmlDoc.XML;
validateDoc.Active := true;
end;
</code></pre>
<p>Because validateDoc is an interface, it will be disposed of properly as the function/procedure exits, there is no need to perform the disposal yourself. If you call ValidateXmlDoc and don't get an exception then it is valid. Personally I like the first call, IsValidXMLDoc which returns true if valid or false if not (and does not raise exceptions outside of itself).</p>
http://stackoverflow.com/questions/446635/schema-validation-with-msxml-in-delphi/565563#5655631Answer by Miel for schema validation with msxml in delphiMiel2009-02-19T14:32:21Z2009-07-02T17:26:39Z<p>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:</p>
<pre><code>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;
</code></pre>
<p>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.</p>
<p>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.</p>