|
From: ofer y. <of...@gm...> - 2009-09-09 13:01:58
|
In the logout message you should have the expected sequence number in tag
789 if you don't have it you can parse the error message.
You can set the next sender/target sequence number (method of Session
object) and then can session.login() or session.reset()
Something like this:
int expectedSeqNum = message.getInt(789);
sessio.setNextSenderMsgSeqNum(expectedSeqNum);
session.logon();
On Wed, Sep 9, 2009 at 7:21 AM, Ivan Voras <iv...@gm...> wrote:
> QuickFIX/J Documentation: http://www.quickfixj.org/documentation/
> QuickFIX/J <http://www.quickfixj.org/documentation/%0AQuickFIX/J> Support:
> http://www.quickfixj.org/support/
>
>
> Hi,
>
> Without doing anything unusual (or at least nothing that we haven't
> been doing all the time), I suddenly started getting this message in
> my protocol logs:
>
> WARNING: fromAdmin;
> 8=FIX.4.4 9=110 35=5 34=7117 49=HTFD 52=20090909-12:12:06.531
> 56=CLIENT 58=MsgSeqNum
> too low, expecting 5716 but received 153 10=041
>
> followed by logouts. The "received" message id (153 in the above
> message) increases, but apparently only after reconnects.
>
> Of course, we now cannot receive anything from upstream (we're
> normally just receiving data). The only possibly "unusual" thing we do
> is abruptly kill the application now and then for debugging during
> development - I don't know if it can cause the issue above.
>
> Any clues on what causes this and how to avoid it in the future?
>
> --
> f+rEnSIBITAhITAhLR1nM9F4cIs5KJrhbcsVtUIt7K1MhWJy1A==
>
>
> ------------------------------------------------------------------------------
> Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
> trial. Simplify your report design, integration and deployment - and focus
> on
> what you do best, core application coding. Discover what's new with
> Crystal Reports now. http://p.sf.net/sfu/bobj-july
> _______________________________________________
> Quickfixj-users mailing list
> Qui...@li...
> https://lists.sourceforge.net/lists/listinfo/quickfixj-users
>
|