Re: [Quickfix-developers] initiator.getSession Error
Brought to you by:
orenmnero
From: EclipseCap <tob...@ec...> - 2009-02-20 16:26:21
|
For posterity here is some code that I use to get from the list of SessionIDs that are strings to an actual QuickFix Session. System.Collections.ArrayList Sessions; Sessions = initiator.getSessions(); SessionID ID = new SessionID(); ID.fromString(Sessions[0].ToString()); Session LookingAt = Session.lookupSession(ID); Ensuring that a session exists at Sessions[0] is an exercise for the user. -- View this message in context: http://www.nabble.com/initiator.getSession-Error-tp3661067p22120791.html Sent from the QuickFIX - Dev mailing list archive at Nabble.com. |