Re: [Quickfix-developers] How to Logout
Brought to you by:
orenmnero
|
From: Dale W. <wil...@oc...> - 2005-09-29 15:43:42
|
Hi Ananth To "re login" after you have logged out you should simply call pSession->login() The code you supplies attempts to re-initialize the library -- in particular the Initiator -- which will not work the way you expect it to. Dale Ananth wrote: > QuickFIX Documentation: > http://www.quickfixengine.org/quickfix/doc/html/index.html QuickFIX > Support: http://www.quickfixengine.org/services.html > > Ananth > > * > ----- Original Message ----- > From: Ananth <ans...@sp...> > To: 'Oren Miller' <or...@qu...> > Sent: Thu Sep 29 3:22 > Subject: Fwd: Re: [Quickfix-developers] How to Logout > > > * > > Hi, > > > > My client side code for login is .... > > > > *FixLogin( string file)* > > *{* > > *application = new CCMEInitiatorApp;* > > *FIX::SessionSettings settings( file );* > > *FIX::FileStoreFactory storeFactory( settings );* > > *FIX::FileLogFactory logFactory( settings );* > > *FIX::SocketInitiator initiator = new FIX::SocketInitiator( > *application, storeFactory, settings, logFactory );* > > *m_initiator->start(); * > > *application->run(file);* > > *}* > > > > And my client side code for logout as u have mentioned is ...... > > > > *FixLogout()* > > *{* > > *FIX::SessionID *pSessionID = new FIX::SessionID > (FIX::BeginString("FIX.4.2"), FIX::SenderCompID( GetSenderCompID()), > FIX::TargetCompID( GetTargetCompID()));* > > *FIX::Session *pSession = FIX::Session::lookupSession( *pSessionID);* > > *if (pSessionID != NULL)* > > *{* > > * pSession->logout();* > > *} * > > *}* > > > > Once I clicked logout its logging me out, but I am unable to login > again....by calling same FixLogin( string file)* * again. Am I doing > mistake some where > > > > Can you please help me out. > > > > Thanks in Advance, > Ananth > > > > > > > *On Wed Sep 28 14:59 , 'Oren Miller' <or...@qu...> sent: > > * > > Just call the public logout() method on the Session class. > > > > > ------------------------------------------------------- This SF.Net > email is sponsored by: Power Architecture Resource Center: Free > content, downloads, discussions, and more. > http://solutions.newsforge.com/ibmarch.tmpl > _______________________________________________ Quickfix-developers > mailing list Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-developers -- ----------------------------------------------------- Dale Wilson, Senior Software Engineer Object Computing, Inc. (OCI) http://www.ociweb.com/ http://www.theaceorb.com/ ---------------------------------------------------- |