Discussion:
strange bug(?) - IXMLDOMDocument2.load() raises an access violation at address 000000F0 every now an then.
(too old to reply)
Gerben Abbink
2007-01-18 18:06:30 UTC
Permalink
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?
Alex Krawarik [MSFT]
2007-02-02 19:45:18 UTC
Permalink
Any chance you can send me a stand-alone repro? Your pascal code doesnt help
all that much as it is.
Post by Gerben Abbink
In my application i use the latest version of MSXML 4. Every now and then
Access violation at address 000000F0. Read of address 000000F0.
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?
Loading...