Re: [Quickfix-users] Outgoing Administrative Messages
Brought to you by:
orenmnero
From: Igor S. <se...@tb...> - 2010-01-14 22:04:27
|
Hi, Override toAdmin() in your application, check for FIX::MsgType_Reject message type and do required action. E.g. void FixApplication::toAdmin(FIX::Message & msg, const FIX::SessionID & sessionID) { if (msgType == FIX::MsgType_Reject) { // do something with 'msg' } } Igor On 1/15/2010 12:23 AM, Mikhail Veygman wrote: > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > Hi All, > > I am running C++ quickfix 1.12.4. > > I need to be able to catch outgoing Reject messages that quickfix sends > when receiving a malformed fix message. > > Does anyone know a way to do it without hacking the library? |