[Quickfix-users] Session config files issue
Brought to you by:
orenmnero
From: Lucio F. <dog...@ya...> - 2012-05-24 05:31:32
|
I've compiled and trolled around the quickfix source and the examples. I figured a good starting point would be to run the 'executor' example, then use the 'tradeclient' example to connect to 'executor', and send it order requests. I created two seperate session files one for the 'executor' as an acceptor, and one for the 'tradeclient' as the initiator. They're both running on the same Win7 pc. 'executor' runs, but tradeclient can't connect to it, and I can't figure out why. I downloaded Mini-fix and was able to send messages to executor, so I know that executor is working. I figure that the problem is with the tradeclient session settings. I've included both of them below, I was hoping someone could point out what's causing them to not communicate. They're both running on the same computer using port 56156. --accceptor session.txt---- [DEFAULT] ConnectionType=acceptor ReconnectInterval=5 SenderCompID=EXEC DefaultApplVerID=FIX.5.0 [SESSION] BeginString=FIXT.1.1 TargetCompID=SENDER HeartBtInt=5 #SocketConnectPort= SocketAcceptPort=56156 SocketConnectHost=127.0.0.1 TransportDataDictionary=pathToXml/spec/FIX50.xml StartTime=07:00:00 EndTime=23:00:00 FileStorePath=store ---- initiator session.txt --- [DEFAULT] ConnectionType=initiator ReconnectInterval=5 SenderCompID=SENDER DefaultApplVerID=FIX.5.0 [SESSION] BeginString=FIXT.1.1 TargetCompID=EXEC HeartBtInt=5 SocketConnectPort=56156 #SocketAcceptPort=56156 SocketConnectHost=127.0.0.1 TransportDataDictionary=pathToXml/spec/FIX50.xml StartTime=07:00:00 EndTime=23:00:00 FileLogPath=log FileStorePath=store --------end------ |