Re: [Quickfix-developers] RE: Request resend
Brought to you by:
orenmnero
From: Fad <s.f...@gm...> - 2006-04-12 13:04:34
|
The problem has resolved. In toApp method of my Application I worte code like that present in the QuickFix examples : void KCApplication::toApp( FIX::Message& message, const FIX::SessionID& sessionID ) throw( FIX::DoNotSend ) { try { FIX::PossDupFlag possDupFlag; message.getHeader().getField( possDupFlag ); if ( possDupFlag ) { throw FIX::DoNotSend(); } } catch ( FIX::FieldNotFound& ) {} if (m_ApptoApp) m_ApptoApp(appdata,(void *)&message,(void *)&sessionID); } this code don't work properly, I replace that code with this and all is ok: void KCApplication::toApp( FIX::Message& message, const FIX::SessionID& sessionID ) throw( FIX::DoNotSend ) { if (m_ApptoApp) m_ApptoApp(appdata,(void *)&message,(void *)&sessionID); } Thank you to all for the help that you have given me. Stefano. -- View this message in context: http://www.nabble.com/Request-resend-t1430121.html#a3881004 Sent from the QuickFIX - Dev forum at Nabble.com. |