Thread: [Quickfix-developers] FileLogPath not defined
Brought to you by:
orenmnero
|
From: Rick L. <ric...@gm...> - 2007-11-09 18:29:14
|
Regardless of whether or not I specify a File/Store/Path in my config file, I can't seem to get it to recognize the FileLogPath -- I found some archives discussing there being a bug when you try to do both in the config file, but I'm JUST trying to get a FileLogPath specified, to no avail. Additionally, I'm having trouble getting the source to build when #HAVE_MYSQL is defined. I believe I have all of the lib/include directories specified, but it's claiming it can't find: MySQLStore::MySQLStore MySQLLogFactory::create MySQLLogFactory::destroy SessionID const &,class std::basic_string MySQLStoreFactory::create MySQLStoreFactory::destroy Any thoughts as to what directory/lib file I'm not pointing to? RL |
|
From: Djalma R. d. S. F. <drs...@gm...> - 2007-11-09 18:38:55
|
Hi Rick, Did you rebuild QuickFIX after enabling #define HAVE_MYSQL? It is also required to enable it in your application source code too, otherwise the MySQL definitions won't be available when you #include MySQLStore.h and MySQLLog.h. Djalma On Nov 9, 2007 4:29 PM, Rick Lane <ric...@gm...> wrote: > QuickFIX Documentation: > http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > > Regardless of whether or not I specify a File*Store*Path in my config > file, I can't seem to get it to recognize the FileLogPath -- I found some > archives discussing there being a bug when you try to do both in the config > file, but I'm JUST trying to get a FileLogPath specified, to no avail. > > Additionally, I'm having trouble getting the source to build when > #HAVE_MYSQL is defined. I believe I have all of the lib/include directories > specified, but it's claiming it can't find: > > MySQLStore::MySQLStore > MySQLLogFactory::create > MySQLLogFactory::destroy > SessionID const &,class std::basic_string > MySQLStoreFactory::create > MySQLStoreFactory::destroy > > > Any thoughts as to what directory/lib file I'm not pointing to? > > RL > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Quickfix-developers mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-developers > |
|
From: Rick L. <ric...@gm...> - 2007-11-09 18:42:00
|
When you say "rebuild QuickFIX" do you mean the quickfix_net_vs8 project? Or should I be building some lower level dependency project? And I'm not even trying to link this into my own app -- I'm just trying to create a new quickfix_net.dll so that I can use MySQLStore, etc. Thanks, RL Djalma Rosa dos Santos Filho wrote: > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > > > ------------------------------------------------------------------------ > > Hi Rick, > > Did you rebuild QuickFIX after enabling #define HAVE_MYSQL? > It is also required to enable it in your application source code too, > otherwise the MySQL definitions won't be available when you #include > MySQLStore.h and MySQLLog.h. > > Djalma > > On Nov 9, 2007 4:29 PM, Rick Lane <ric...@gm... > <mailto:ric...@gm...>> wrote: > > QuickFIX Documentation: > http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > > Regardless of whether or not I specify a File/Store/Path in my > config file, I can't seem to get it to recognize the FileLogPath > -- I found some archives discussing there being a bug when you try > to do both in the config file, but I'm JUST trying to get a > FileLogPath specified, to no avail. > > Additionally, I'm having trouble getting the source to build when > #HAVE_MYSQL is defined. I believe I have all of the lib/include > directories specified, but it's claiming it can't find: > > MySQLStore::MySQLStore > MySQLLogFactory::create > MySQLLogFactory::destroy > SessionID const &,class std::basic_string > MySQLStoreFactory::create > MySQLStoreFactory::destroy > > > Any thoughts as to what directory/lib file I'm not pointing to? > > RL > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a > browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Quickfix-developers mailing list > Qui...@li... > <mailto:Qui...@li...> > https://lists.sourceforge.net/lists/listinfo/quickfix-developers > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > ------------------------------------------------------------------------ > > _______________________________________________ > Quickfix-developers mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-developers |
|
From: Djalma R. d. S. F. <drs...@gm...> - 2007-11-09 19:15:21
|
You need to rebuild both native quickfix.lib and the main .NET wrapper quickfix_net.dll after enabling #HAVE_MYSQL in config_windows.h. On Nov 9, 2007 4:41 PM, Rick Lane <ric...@gm...> wrote: > When you say "rebuild QuickFIX" do you mean the quickfix_net_vs8 > project? Or should I be building some lower level dependency project? > > And I'm not even trying to link this into my own app -- I'm just trying to > create a new quickfix_net.dll so that I can use MySQLStore, etc. > > Thanks, > RL > > Djalma Rosa dos Santos Filho wrote: > > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > > ------------------------------ > > Hi Rick, > > Did you rebuild QuickFIX after enabling #define HAVE_MYSQL? > It is also required to enable it in your application source code too, > otherwise the MySQL definitions won't be available when you #include > MySQLStore.h and MySQLLog.h. > > Djalma > > On Nov 9, 2007 4:29 PM, Rick Lane <ric...@gm...> wrote: > > > QuickFIX Documentation: > > http://www.quickfixengine.org/quickfix/doc/html/index.html > > QuickFIX Support: http://www.quickfixengine.org/services.html > > > > > > Regardless of whether or not I specify a File*Store*Path in my config > > file, I can't seem to get it to recognize the FileLogPath -- I found some > > archives discussing there being a bug when you try to do both in the config > > file, but I'm JUST trying to get a FileLogPath specified, to no avail. > > > > Additionally, I'm having trouble getting the source to build when > > #HAVE_MYSQL is defined. I believe I have all of the lib/include directories > > specified, but it's claiming it can't find: > > > > MySQLStore::MySQLStore > > MySQLLogFactory::create > > MySQLLogFactory::destroy > > SessionID const &,class std::basic_string > > MySQLStoreFactory::create > > MySQLStoreFactory::destroy > > > > > > Any thoughts as to what directory/lib file I'm not pointing to? > > > > RL > > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Splunk Inc. > > Still grepping through log files to find problems? Stop. > > Now Search log events and configuration files using AJAX and a browser. > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > _______________________________________________ > > Quickfix-developers mailing list > > Qui...@li... > > https://lists.sourceforge.net/lists/listinfo/quickfix-developers > > > > ------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > ------------------------------ > > _______________________________________________ > Quickfix-developers mailing lis...@li...://lists.sourceforge.net/lists/listinfo/quickfix-developers > > |
|
From: Rick L. <ric...@gm...> - 2007-11-09 19:53:14
|
Djalma, Thanks. I was not rebuilding the native lib. Now that I'm using the MySQLStoreFactory instead of the FileStoreFactory, I was under the impression I could use FileLogs, however I always get a "FileLogPath not defined" message, even though it's clearly defined in my config file. Has anyone else ever had issues with FileLogPath not being found? Djalma Rosa dos Santos Filho wrote: > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > > > ------------------------------------------------------------------------ > > You need to rebuild both native quickfix.lib and the main .NET wrapper > quickfix_net.dll after enabling #HAVE_MYSQL in config_windows.h. > > > On Nov 9, 2007 4:41 PM, Rick Lane < ric...@gm... > <mailto:ric...@gm...>> wrote: > > When you say "rebuild QuickFIX" do you mean the quickfix_net_vs8 > project? Or should I be building some lower level dependency project? > > And I'm not even trying to link this into my own app -- I'm just > trying to create a new quickfix_net.dll so that I can use > MySQLStore, etc. > > Thanks, > RL > > > Djalma Rosa dos Santos Filho wrote: >> QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html >> QuickFIX Support: http://www.quickfixengine.org/services.html >> >> >> >> ------------------------------------------------------------------------ >> >> Hi Rick, >> >> Did you rebuild QuickFIX after enabling #define HAVE_MYSQL? >> It is also required to enable it in your application source code >> too, otherwise the MySQL definitions won't be available when you >> #include MySQLStore.h and MySQLLog.h. >> >> Djalma >> >> On Nov 9, 2007 4:29 PM, Rick Lane <ric...@gm... >> <mailto:ric...@gm...>> wrote: >> >> QuickFIX Documentation: >> http://www.quickfixengine.org/quickfix/doc/html/index.html >> QuickFIX Support: http://www.quickfixengine.org/services.html >> >> >> Regardless of whether or not I specify a File/Store/Path in >> my config file, I can't seem to get it to recognize the >> FileLogPath -- I found some archives discussing there being a >> bug when you try to do both in the config file, but I'm JUST >> trying to get a FileLogPath specified, to no avail. >> >> Additionally, I'm having trouble getting the source to build >> when #HAVE_MYSQL is defined. I believe I have all of the >> lib/include directories specified, but it's claiming it can't >> find: >> >> MySQLStore::MySQLStore >> MySQLLogFactory::create >> MySQLLogFactory::destroy >> SessionID const &,class std::basic_string >> MySQLStoreFactory::create >> MySQLStoreFactory::destroy >> >> >> Any thoughts as to what directory/lib file I'm not pointing to? >> >> RL >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Splunk Inc. >> Still grepping through log files to find problems? Stop. >> Now Search log events and configuration files using AJAX and >> a browser. >> Download your FREE copy of Splunk now >> http://get.splunk.com/ >> _______________________________________________ >> Quickfix-developers mailing list >> Qui...@li... >> <mailto:Qui...@li...> >> https://lists.sourceforge.net/lists/listinfo/quickfix-developers >> >> >> ------------------------------------------------------------------------ >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Splunk Inc. Still grepping >> through log files to find problems? Stop. Now Search log events >> and configuration files using AJAX and a browser. Download your >> FREE copy of Splunk now >> http://get.splunk.com/ >> ------------------------------------------------------------------------ >> >> _______________________________________________ >> Quickfix-developers mailing list >> Qui...@li... <mailto:Qui...@li...> >> https://lists.sourceforge.net/lists/listinfo/quickfix-developers > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > ------------------------------------------------------------------------ > > _______________________________________________ > Quickfix-developers mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-developers |
|
From: Oren M. <or...@qu...> - 2007-11-09 20:41:11
|
There is a bug in the current version that is fixed in CVS. The workaround with 1.12.4 is to define the log path in the global section as it does not pick it up correctly from the session section. --oren On Nov 9, 2007, at 1:53 PM, Rick Lane wrote: > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/ > html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > Djalma, > > Thanks. I was not rebuilding the native lib. > > Now that I'm using the MySQLStoreFactory instead of the > FileStoreFactory, I was under the impression I could use FileLogs, > however I always get a "FileLogPath not defined" message, even > though it's clearly defined in my config file. > > Has anyone else ever had issues with FileLogPath not being found? > > Djalma Rosa dos Santos Filho wrote: >> QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/ >> html/index.html >> QuickFIX Support: http://www.quickfixengine.org/services.html >> >> >> >> >> You need to rebuild both native quickfix.lib and the main .NET >> wrapper quickfix_net.dll after enabling #HAVE_MYSQL in >> config_windows.h. >> >> >> On Nov 9, 2007 4:41 PM, Rick Lane < ric...@gm...> wrote: >> When you say "rebuild QuickFIX" do you mean the quickfix_net_vs8 >> project? Or should I be building some lower level dependency >> project? >> >> And I'm not even trying to link this into my own app -- I'm just >> trying to create a new quickfix_net.dll so that I can use >> MySQLStore, etc. >> >> Thanks, >> RL >> >> >> Djalma Rosa dos Santos Filho wrote: >>> QuickFIX Documentation: http://www.quickfixengine.org/quickfix/ >>> doc/html/index.html >>> QuickFIX Support: http://www.quickfixengine.org/services.html >>> >>> >>> >>> >>> Hi Rick, >>> >>> Did you rebuild QuickFIX after enabling #define HAVE_MYSQL? >>> It is also required to enable it in your application source code >>> too, otherwise the MySQL definitions won't be available when you >>> #include MySQLStore.h and MySQLLog.h. >>> >>> Djalma >>> >>> On Nov 9, 2007 4:29 PM, Rick Lane <ric...@gm...> wrote: >>> QuickFIX Documentation: http://www.quickfixengine.org/quickfix/ >>> doc/html/index.html >>> QuickFIX Support: http://www.quickfixengine.org/services.html >>> >>> >>> Regardless of whether or not I specify a FileStorePath in my >>> config file, I can't seem to get it to recognize the FileLogPath >>> -- I found some archives discussing there being a bug when you >>> try to do both in the config file, but I'm JUST trying to get a >>> FileLogPath specified, to no avail. >>> >>> Additionally, I'm having trouble getting the source to build when >>> #HAVE_MYSQL is defined. I believe I have all of the lib/include >>> directories specified, but it's claiming it can't find: >>> >>> MySQLStore::MySQLStore >>> MySQLLogFactory::create >>> MySQLLogFactory::destroy >>> SessionID const &,class std::basic_string >>> MySQLStoreFactory::create >>> MySQLStoreFactory::destroy >>> >>> >>> Any thoughts as to what directory/lib file I'm not pointing to? >>> >>> RL >>> >>> -------------------------------------------------------------------- >>> ----- >>> This SF.net email is sponsored by: Splunk Inc. >>> Still grepping through log files to find problems? Stop. >>> Now Search log events and configuration files using AJAX and a >>> browser. >>> Download your FREE copy of Splunk now >> http://get.splunk.com/ >>> _______________________________________________ >>> Quickfix-developers mailing list >>> Qui...@li... >>> https://lists.sourceforge.net/lists/listinfo/quickfix-developers >>> >>> -------------------------------------------------------------------- >>> ----- >>> This SF.net email is sponsored by: Splunk Inc. >>> Still grepping through log files to find problems? Stop. >>> Now Search log events and configuration files using AJAX and a >>> browser. >>> Download your FREE copy of Splunk now >> http://get.splunk.com/ >>> _______________________________________________ >>> Quickfix-developers mailing list >>> Qui...@li... >>> https://lists.sourceforge.net/lists/listinfo/quickfix-developers >> >> --------------------------------------------------------------------- >> ---- >> This SF.net email is sponsored by: Splunk Inc. >> Still grepping through log files to find problems? Stop. >> Now Search log events and configuration files using AJAX and a >> browser. >> Download your FREE copy of Splunk now >> http://get.splunk.com/ >> _______________________________________________ >> Quickfix-developers mailing list >> Qui...@li... >> https://lists.sourceforge.net/lists/listinfo/quickfix-developers > ---------------------------------------------------------------------- > --- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a > browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Quickfix-developers mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-developers |