Re: [Quickfix-developers] MSXML SAX Parser exception
Brought to you by:
orenmnero
From: Oren M. <or...@qu...> - 2004-05-27 17:11:18
|
You're client probably needs to install MSXML (http://www.microsoft.com/downloads/details.aspx?FamilyID=c0f86022 -2d4c-4162-8fb8-66bfc12f32b0&displaylang=en) If they don't want to do that, you're other option is to use libxml instead (see build instructions) and distribute with the libxml2 library. Using libxml2 may be a good choice if you are installing on unknown environments since you don't have to rely on users needing to install MSXML. BTW MSXML is installed along with IE 6, so most desktops have it, but many older servers may not. --oren On May 27, 2004, at 11:41 AM, Bjo...@ub... wrote: > 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 > > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: Oracle 10g > Get certified on the hottest thing ever to hit the market... Oracle > 10g. > Take an Oracle 10g class now, and we'll give you the exam FREE. > http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click > _______________________________________________ > Quickfix-developers mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-developers > |