Re: [Quickfix-developers] Orders never sent vs session vs startTime
Brought to you by:
orenmnero
|
From: John G. <joh...@wa...> - 2007-06-20 07:53:07
|
Hi and thanks for the answer,
On Tue, 19 Jun 2007, Caleb Epstein wrote:
>Have your perhaps copied this sample code from the "tradeclient" sample
>application? It always discards messages instead of resending them:
>
>void Application::toApp( FIX::Message& message, const FIX::SessionID&
>sessionID )
>throw( FIX::DoNotSend )
>{
> try
> {
> FIX::PossDupFlag possDupFlag;
> message.getHeader().getField( possDupFlag );
> if ( possDupFlag ) throw FIX::DoNotSend();
> }
That was the first error I made when fumbling with queueing up orders on a
session that is down, quite some while ago, so it *should* not be the
cause, but I will check the version of the binary they are running vs what
is in CVS of our apps to be sure I am not throwing the DoNotSend
exception.
Thx
JG
|