[Quickfix-developers] MSXML SAX Parser exception
Brought to you by:
orenmnero
From: <Bjo...@ub...> - 2004-05-27 16:48:08
|
Hello, We have recently developed a fix interface using QuickFIX 1.7.0. During the development we had no problems using the FIX43.XML dictionary. After having installed our interface on the client side we always get the exception: "MSXML SAX Parser could not be created". MSXML_DOMDocument::MSXML_DOMDocument() throw( ConfigError& ) : m_pDoc(NULL) { if(FAILED(CoInitialize(NULL))) throw ConfigError("Could not initialize COM"); HRESULT hr = CoCreateInstance( MSXML2::CLSID_DOMDocument, NULL, CLSCTX_ALL, __uuidof( MSXML2::IXMLDOMDocument2 ), ( void ** ) & m_pDoc ); if ( hr != S_OK ) throw( ConfigError( "MSXML SAX Parser could not be created" ) ); } within MSXML_DOMDocument.cpp. Unfortunately we cannot launch a debugger on clients side to control the value of hr. Our development environment is Windows 2000 client Service Pack 4. The clients environment is Windows 2000 server Service Pack 4. Did anyone accounter this kind of problem? Any help is appreciated. Bjoern |