Re: [Quickfix-developers] start to buid an application - HELP
Brought to you by:
orenmnero
|
From: Shepheard, T. \(London\) <Tob...@ml...> - 2006-06-22 11:58:48
|
1) QuickFIX will get the settings from the settings file for you, and uses them internally. You shouldn't have to worry about them from your code. If you do want to use them for some reason, then use the public accessor methods in SessionSettings (I don't know about the c# version, but java has a getSessionProperties() method, and get<Type> methods which take a key, such as getBool, getDouble etc and will return the property with the given key (assuming its of the correct data type). Take a look at the C# version of SessionSettings to see what you can use. 2) QuickFIX will handle the connection and FIX initialisation automatically, including sending the Logon message. If you wish to do anything extra, you can use the onCreate / onLogon functions, see http://www.quickfixengine.org/quickfix/doc/html/application.html - but otherwise, just let QuickFIX handle this for you. 3) You need to use the Session's sendToTarget method. See http://www.quickfixengine.org/quickfix/doc/html/sending_messages.html 4) See the examples folder and http://www.quickfixengine.org/quickfix/doc/html/examples.html Regards Toby -----Original Message----- From: qui...@li... [mailto:qui...@li...] On Behalf Of roelad5 Sent: 22 June 2006 11:55 To: qui...@li... Subject: [Quickfix-developers] start to buid an application - HELP QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html QuickFIX Support: http://www.quickfixengine.org/services.html Hello every one, I'm starting to build a c# .NET application based on the QuickFix engine. I have read the documentation and did not understand couple od issues: 1) How to get the details from the settings file (SessionSettings) 2) what are exactly the steps in order to initiate the connection follwoing by the logon message. 3) how to send messages (is it by the SocketInitiator - which does not have a send method??) 4)if someone can help me with c# code example in order to understand more.... Thanks so much -- View this message in context: http://www.nabble.com/start-to-buid-an-application---HELP-t1829461.html# a4990950 Sent from the QuickFIX - Dev forum at Nabble.com. All the advantages of Linux Managed Hosting--Without the Cost and Risk! Fully trained technicians. The highest number of Red Hat certifications in the hosting industry. Fanatical Support. Click to learn more http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D107521&bid=3D248729&dat=3D= 121642 _______________________________________________ Quickfix-developers mailing list Qui...@li... https://lists.sourceforge.net/lists/listinfo/quickfix-developers -------------------------------------------------------- If you are not an intended recipient of this e-mail, please notify the = sender, delete it and do not read, act upon, print, disclose, copy, = retain or redistribute it. Click here for important additional terms = relating to this e-mail. http://www.ml.com/email_terms/ -------------------------------------------------------- |