[Quickfix-users] Don't see any trace of operations
Brought to you by:
orenmnero
From: <la...@ma...> - 2008-04-08 09:24:29
|
Hello, I'm currently trying to use quickfix and ruby to communicate with an home made Fix engine. This one is running on a host: myhost and on port: 5002 But I do not see any logs on my home made fix server saying that tradeclient is connected What's wrong ?? Here my session.ini file: [DEFAULT] ConnectionType=initiator ReconnectInterval=60 SenderCompID=RUBY_LAUMA FileLogPath=./ruby.log [SESSION] BeginString=FIX.4.2 TargetCompID=SLE_LAUMA HeartBtInt=30 SocketConnectPort=5002 SocketConenctHost=myhost DataDictionary=/home/team03/lauma/work/devel/quickfix/spec/FIX42.xml StartTime=08:00:00 EndTime=18:00:00 PersistMessages=N FileStorePath=./seqnums.db And I've also test the following simple ruby script (from you examples directory), but I do not see anythin in logs saying that connection is failed or succeed... Could anyone help please ? require 'quickfix_ruby' # application does not do anything usefull ;) require 'application' exit if ARGV.length < 1 fileName = ARGV[0] begin settings = Quickfix::SessionSettings.new( fileName ) application = MyApplication.new storeFactory = Quickfix::FileStoreFactory.new( settings ) logFactory = Quickfix::ScreenLogFactory.new( settings ) initiator = Quickfix::SocketInitiator.new( MyApplication.new , storeFactory , settings , logFactory ) initiator.start() initiator.connect() while true end initiator.stop() rescue Quickfix::ConfigError => e print e end Thanks you very much for any help you may provide Regards Laurent |