Re: [Quickfix-developers] modifications to support CME iLink - any interest?
Brought to you by:
orenmnero
From: Grant B. <gbi...@co...> - 2012-05-29 15:39:50
|
You should definitely create a bug report and attach your patch there. On Tue, May 29, 2012 at 10:13 AM, QM <eqm...@nw...> wrote: > QuickFIX Documentation: > http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > > Good point. I see how that would work for the in-session logon. > > (I can't say either way for using this toAdmin() change in the > max-2500-resend case... I haven't researched that angle, as we resolved it > in a different way.) > > Patch included, below, for throwing DoNotSend from toAdmin(). > > > > Index: src/C++/Session.cpp > =================================================================== > --- src/C++/Session.cpp (revision 2335) > +++ src/C++/Session.cpp (working copy) > @@ -522,7 +522,10 @@ > > if ( Message::isAdminMsgType( msgType ) ) > { > - m_application.toAdmin( message, m_sessionID ); > + try{ > + m_application.toAdmin( message, m_sessionID ); > + } > + catch ( DoNotSend& ) { return false; } > > if( msgType == "A" && !m_state.receivedReset() ) > { > > > > > > On Tue, May 22, 2012 at 4:03 PM, Natala, Benjamin J < > ben...@jp...> wrote: > >> The ability to throw DoNotSend in toAdmin would be very useful and >> presumably would not require config changes. With that alone, the other >> features you added could be hacked in without modifying quickfix source. >> >> -Ben >> >> -----Original Message----- >> From: QM [mailto:eqm...@nw...] >> Sent: Tuesday, May 22, 2012 4:28 PM >> To: qui...@li... >> Subject: [Quickfix-developers] modifications to support CME iLink - any >> interest? >> >> QuickFIX Documentation: >> http://www.quickfixengine.org/quickfix/doc/html/index.html >> QuickFIX Support: http://www.quickfixengine.org/services.html >> >> This email is confidential and subject to important disclaimers and >> conditions including on offers for the purchase or sale of >> securities, accuracy and completeness of information, viruses, >> confidentiality, legal privilege, and legal entity disclaimers, >> available at http://www.jpmorgan.com/pages/disclosures/email. >> > > > > ------------------------------------------------------------------------------ > Live Security Virtual Conference > Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > _______________________________________________ > Quickfix-developers mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-developers > -- Grant Birchmeier *Connamara Systems, LLC* *Made-To-Measure Trading Solutions.* Exactly what you need. No more. No less.* * http://connamara.com |