[Quickfix-developers] HeartBeat
Brought to you by:
orenmnero
From: Parjeet S. <par...@oa...> - 2008-02-27 06:16:21
|
I am newbie to this FIX and QuickFIX environment. I have written executor code and can connect to the client side that is broker. The client can see my connection and heartbeat. How can I receive heartbeat from the client side. Cut and Paste is the code: SessionSettings settings = new SessionSettings("C:\\Documents and Settings\\ParjeetS\\Projects\\FIXBarxsAcorn\\FIXBarxsAcorn\\Initiator.co nfig"); Application application = new Application(); FileStoreFactory storeFactory = new FileStoreFactory(settings); MessageFactory messageFactory = new DefaultMessageFactory(); ThreadedSocketInitiator initiator = new ThreadedSocketInitiator(application, storeFactory, settings, messageFactory); // SocketInitiator initiator = new SocketInitiator(application, storeFactory, settings,messageFactory); initiator.start(); I will appreciate your help |