[Quickfix-users] Making some progress... thank you.. and another query
Brought to you by:
orenmnero
From: cstrader232 <cst...@cs...> - 2006-10-10 23:07:37
|
Thanks for helping me get started. I've made some progress. =20 I now have my acceptor running (see my code below). However, it doesn't = seem that any of the events (toapp, fromapp, fromAdmin etc) are firing, = nor is any log being written (screen or file). I'm assuming I next need to try to create a logon message? But I can't = quite figure out how to do that. =20 Thanks for your patience.... chuck Dim sessionSettings As New SessionSettings("C:\fixsessioninitiator.txt") = ' CmdArgs(0)) Dim application As New Application Dim storeFactory As New FileStoreFactory(sessionSettings) Dim logFactory As New ScreenLogFactory(sessionSettings) Dim FileFactory As New FileLogFactory("c:\fixlog.txt") Dim messageFactory As New DefaultMessageFactory Dim acceptor As New SocketInitiator _ (application, storeFactory, sessionSettings, logFactory, messageFactory) acceptor.start() |