In a Delphi console application that reads its configuration from an XML file, I unexpectedly ran into “I/O error 103”. I/O error 103 will look familiar to most of you Delphi developers, it means “File not open”. I traced it to this source line:
xmlcfg := LoadXMLDocument(FConfigFilePath);
LoadXMLDocument comes from the Delphi unit XMLDoc.pas, so the problem was not in my code. Ouch, this could mean trouble. But, the exact same unit was used in another (Forms) application where it worked perfectly fine. What was going on here?
The solution was fortunately deceivingly simple: the XMLDoc unit uses interfaces, so you need a CoInitialize() call before doing anything. As it turned out, my CoInitialize() call was too late. It was further down, right before initializing some ADO components, but after the attempt to read the configuration file. So the solution was to put
CoInitialize(nil);
At the very top of my initialization code, before calling the configuration reader. Now it worked fine, no more “File not open” messages.
This proved once more that sometimes, the error message you get has little to do with the real issue at hand.
For reference: CoInitialize resides in the ActiveX unit.
Geef een reactie