I am using QuickFIX/J version 1.6.4 within Apache Camel 2.17.0 and I get the session message Disconnecting: Encountered END_OF_STREAM
. It is not an error, but in my case it leads to an unintentional Logoff.
What circumstances can lead to this message and how do I analyze which circumstance in my case is the cause?
Since the accepted answer covers only an application specific behaviour I am going to name some of the possible causes for the
END_OF_STREAM
event.Basically it is kind of like the "connection reset by peer" event of a TCP connection. Meaning that the connection went down without cleanly ending it with a
Logout
message.Network related things aside, this can occur whenever the counterparty decides to not send a
Logout
. Most of the time the reason they are not sending a Logout is due to security, i.e. the counterparty does not want to disclose information about their system.Examples:
Logout
indicating this)As @macemers suggested, another application-specific problem at the counterparty could be that their FIX engine is somehow stuck. This eventually will lead to an abrupt disconnection since the other side fails to process messages or reply to heartbeat messages.
From the FIX spec (FIX Session Protocol, FIX Session-level Test Cases and Expected Behaviors):