Gerben Abbink
2007-01-18 18:06:30 UTC
In my application i use the latest version of MSXML 4. Every now and then
IXMLDOMDocument2.load() raises an access violation:
Access violation at address 000000F0. Read of address 000000F0.
Here's the code (Pascal):
XMLDOMDocument := CoDOMDocument40.Create();
XMLDOMDocument.setProperty('NewParser', True);
XMLDOMDocument.setProperty('SelectionLanguage', 'XPath');
XMLDOMDocument.setProperty('SelectionNamespaces', 'xmlns:xsd="' +
W3C_XMLSCHEMA_NAMESPACE + '"');
XMLDOMDocument.resolveExternals := True;
XMLDOMDocument.validateOnParse := False;
if not(XMLDOMDocument.load(URL)) then begin
Any ideas?
IXMLDOMDocument2.load() raises an access violation:
Access violation at address 000000F0. Read of address 000000F0.
Here's the code (Pascal):
XMLDOMDocument := CoDOMDocument40.Create();
XMLDOMDocument.setProperty('NewParser', True);
XMLDOMDocument.setProperty('SelectionLanguage', 'XPath');
XMLDOMDocument.setProperty('SelectionNamespaces', 'xmlns:xsd="' +
W3C_XMLSCHEMA_NAMESPACE + '"');
XMLDOMDocument.resolveExternals := True;
XMLDOMDocument.validateOnParse := False;
if not(XMLDOMDocument.load(URL)) then begin
Any ideas?