My application made using C++ builder XE3. In my application i have done some xml parsing using XML.xmldoc.hpp
On XP machine when i run application it is showing me messagebox "Microsoft msxml is not installed".
Please can anyone help me??
My application made using C++ builder XE3. In my application i have done some xml parsing using XML.xmldoc.hpp
On XP machine when i run application it is showing me messagebox "Microsoft msxml is not installed".
Please can anyone help me??
The error message is a little misleading. It does not mean MSXML is not installed at all. MSXML uses COM, and the error message actually means the MSXML COM object could not be instantiated via
CoCreateInstance()
(and the MSXML DOMVendor forTXMLDocument
attempts to instantiate several different versions of MSXML before giving up). That is a subtle but important distinction to make. For instance, if you are using the XMLDocument in a worker thread, you have to make sure you are callingCoInitialize/Ex()
beforehand. C++Builder does that for you in the main UI thread, but you have to do it manually in a worker thread.