From: John H. <jhe...@bo...> - 2006-02-24 16:48:15
|
I think you are too, and there's your problem. ;^) QF/J uses the stock Java SimpleDateFormat to parse the session start and end times. Strings with no date, just times, end up in 1970 -- when GMT was an hour later than UTC. So until you added the time zone, your session would have been set up to end at 22:50 local time (21:50 UTC).=20 I'll submit a patch for this, but in the meantime, setting TimeZone does obviously fix it. More info at = http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=3D4644278. John -----Original Message----- From: qui...@li... [mailto:qui...@li...] On Behalf Of Kimpton, C (Chris) Sent: Friday, February 24, 2006 9:31 AM To: qui...@li... Subject: RE: [Quickfix-users] Re QFJ Session times (was Re QuickFIX/J 1.0.0 Beta 3 Released) Hi, I think I am in English/GMT time zone (it's a locked down production box, so I can't see the window for it... Here is the config file: [...] TimeZone=3DEurope/London StartTime=3D00:01:00 EndTime=3D21:50:00 |