From: Mikhail V. <mve...@gm...> - 2010-01-14 21:23:40
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?
--
Regards,
Mikhail Veygman
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?
From: Kenny S. <ks...@co...> - 2010-01-14 22:43:01
toAdmin
http://quickfixengine.org/quickfix/doc/html/application.html
--
Kenny Stone
Connamara Systems, LLC
On Thu, Jan 14, 2010 at 3:23 PM, Mikhail Veygman <mve...@gm...> 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?
> --
> Regards,
>
> Mikhail Veygman
>
>
>
>
> ------------------------------------------------------------------------------
> Throughout its 18-year history, RSA Conference consistently attracts the
> world's best and brightest in the field, creating opportunities for
> Conference
> attendees to learn about information security's most important issues
> through
> interactions with peers, luminaries and emerging and established companies.
> http://p.sf.net/sfu/rsaconf-dev2dev
> _______________________________________________
> Quickfix-users mailing list
> Qui...@li...
> https://lists.sourceforge.net/lists/listinfo/quickfix-users
>