All,
I am attempting to get my client and server QuickFix apps to communicate,
but the behavior that I am seeing is that my client app receives a toAdmin()
callback followed immediately by the onLogout() callback. I am running the
client and server apps on the same box. Thinking that it might be an IP/PORT
configuration issue with my box, I placed my client and server on separate
boxes; however, I still received the same behavior (toAdmin() callback
followed immediately by onLogout() callback). I am sure it is a simple issue
(e.g. configuration) that I am overlooking. Does anyone have any insight?
PS. I was able to run the example apps (ordermatch and tradeclient)
successfully on my box (they communicated successfully).
Matt P.
Catus Tech LLC
----------------------------------------------------------------------------
----------------------------------
***Server config***
[DEFAULT]
ConnectionType=acceptor
ReconnectInterval=20
SocketAcceptPort=5001
StartTime=00:00:00
EndTime=00:00:00
HeartBtInt=10
FileStorePath=c:\server\store
FileLogPath=c:\server\log
[SESSION]
BeginString=FIX4.3
SenderCompID=Server1
TargetCompID=Client1
DataDictionary=c:\Projects\quickfix\spec\FIX43.xml
***Client config***
[DEFAULT]
ConnectionType=initiator
ReconnectInterval=20
HeartBtInt=30
FileStorePath=c:\client\store
FileLogPath=c:\client\log
StartTime=00:00:00
EndTime=00:00:00
SocketConnectHost=localhost
SocketConnectPort=5001
[SESSION]
BeginString=FIX.4.3
SenderCompID=Client1
TargetCompID=Server1
DataDictionary=c:\Projects\quickfix\spec\FIX43.xml
|