[Quickfix-developers] Session Identification Problem
Brought to you by:
orenmnero
From: Pasquale d'A. <pas...@ga...> - 2004-08-02 17:09:17
|
Hi I experienced same problem as Shamanth because there are some FIX market = server that implement different services on difference TCP ports, using = same session identifier. I need to manage more than one simultaneous session with same SenderID, = SenderSubID and TargetID. I modified my quickfix code inserting a new configuration field = "SessionQualifier". I added a new member "std::string m_strQualifier" to = class SessionID and I modified all methods to manage that new member. I use the class MySQLStore to store sessions info, so I added a new = field "session_qualifier" to my "sessions" table and I manage that field = in my MySQLStore code version. My code routes well messages to the right destination and I have been = using this implementation for many months. Regards. Pasquale d'Aloise |