Re: [Quickfix-developers] Application::fromAdmin from Initiator App
Brought to you by:
orenmnero
|
From: Andrei G. <an...@gm...> - 2008-09-03 00:40:43
|
On Tue, Sep 2, 2008 at 7:47 PM, George Hrysanthopoulos <ge...@so...> wrote: > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > > Hello everyone, > I noticed that the executor(acceptor) sample app has: "Application::fromAdmin" defined and active (in Application.cpp). > However, the fixclient (initiator) app does not have this defined, only a function prototype: > Application.h: void toAdmin( FIX::Message&, const FIX::SessionID& ) {} > Application.h: void fromAdmin( const FIX::Message&, const FIX::SessionID& ) > Is Application::fromAdmin only for acceptor applications? > If not, is there some sample code that shows what kind of events and actions can be processed there from an initiator app? > Thanks in advance for your help. > -George All incoming session level messages (i.e. Logon, Heartbeat, ...) end up showing in the fromAdmin method. It doesn't matter if the application is an acceptor/initiator. |