[Quickfix-users] Query on QuickFIX 1.9.3 Version --Oren
Brought to you by:
orenmnero
|
From: Dinesh B. <Din...@in...> - 2004-11-10 10:52:48
|
Hi oren,
The problem mentioned below (i.e., Session Establishment when the =
startTime is reached)is working fine with Max Solution. so is this fix =
available in the latest version of quickfix.
=20
thanx
dinesh.
-----Original Message-----
From: Requenes, Max [mailto:Max...@sa...]
Sent: Monday, November 08, 2004 7:57 PM
To: Dinesh Belaguli; qui...@li...; =
qui...@li...
Subject: RE: [Quickfix-developers] Sessions are not established when it =
reaches the startTime.
Do you happen to be using ThreadedSocketInitiator?
=20
I ran into a similar problem. I fixed it by modifying =
ThreadedSocketInitiator::onStart()
=20
change this:
connect();
while ( !m_stop )
process_sleep(1);
=20
to this:
while ( !m_stop ) {
connect();
process_sleep(1);
}
=20
=20
I submitted this fix to the mailing list before, but got no response.
http://sourceforge.net/mailarchive/forum.php?thread_id=3D4325707 =
<http://sourceforge.net/mailarchive/forum.php?thread_id=3D4325707&forum_i=
d=3D103> &forum_id=3D103
=20
Let me know if this helps.
-----Original Message-----
From: Dinesh Belaguli [mailto:Din...@in...]
Sent: Monday, November 08, 2004 4:05 AM
To: qui...@li...; =
qui...@li...
Cc: Dinesh Belaguli
Subject: [Quickfix-developers] Sessions are not established when it =
reaches the startTime.
Importance: High
hi,=20
I have two programmes acting one as client and other as server.=20
in the quickfixConfig.cfg (configuration file) i have configured the =
start and EndTime as follows.=20
StartTime=3D08:45:00=20
EndTime=3D08:10:00 =20
the above timings are in GMT.=20
for convenience i changed my system time to GMT.=20
I started the server programme before running the client programme.=20
Two cases.=20
1) when i start my client programme before the start Time say 08:40:00=20
connection established successfully but the sessions are not =
created that is fine.=20
but when the time reaches 8:45 it didn't (create) establish the =
sessions (ideally it should establish the sessions know.)
=20
2) when i start the client programme some where after the startTime say =
8:48 then it established sessions.=20
i want to know y the sessions are not created in the first case as i =
have explained..=20
can any one through some light on this..=20
BELOW is My Configuration File i.e. at client side.=20
=20
[DEFAULT]=20
ConnectionType=3Dinitiator=20
HeartBtInt=3D20=20
FileStorePath=3Dstore=20
FileLogPath=3Dlogs=20
StartTime=3D08:45:00=20
EndTime=3D08:10:00=20
ResetOnDisconnect=3DN=20
ResetOnLogout=3DN=20
ProviderPassword=3D=20
SenderSubID=3D=20
OnLogonResetMsgSeqNo=3Dfalse=20
[SESSION]=20
BeginString=3DFIX.4.2=20
SenderCompID=3DITLClientMD=20
TargetCompID=3DITLServer=20
UseDataDictionary=3DY=20
ValidateFieldsOutOfOrder=3DY=20
DataDictionary=3Djava/spec/barclay/FIX42.xml=20
CheckLatency=3DN=20
SocketConnectHost=3Dlocalhost=20
SocketConnectPort=3D5007=20
[SESSION]=20
BeginString=3DFIX.4.2=20
SenderCompID=3DITLClientOrder=20
TargetCompID=3DITLServer=20
UseDataDictionary=3DY=20
ValidateFieldsOutOfOrder=3DY=20
DataDictionary=3Djava/spec/barclay/FIX42.xml=20
CheckLatency=3DN=20
SocketConnectHost=3Dlocalhost=20
SocketConnectPort=3D5007=20
Thanx.=20
Dinesh.=20
DISCLAIMER: This e-mail message and any attachments are intended solely =
for the use of the individual or entity to which it is addressed and may =
contain information that is confidential or legally privileged. If you =
are not the intended recipient, you are hereby notified that any =
dissemination, distribution, copying or other use of this message or its =
attachments is strictly prohibited. If you have received this message in =
error, please notify the sender immediately and permanently delete this =
message and any attachments.=20
|