-1

I want to stop all duplicate messages(orders really) but allow message tag 35=4 through. This is needed after a reconnect it seems.

8=FIX.4.2^A9=100^A35=4^A34=335^A43=Y^A49=YYYYYYYYY^A52=20150218-05:16:21.353^A56=IBXXXX^A122=20150218-05:16:21.352^A36=337^A123=Y^A10=116^A

Is this message sent via ToApp or ToAdmin? I need to know where to put the logic...

ManInMoon
  • 6,795
  • 15
  • 70
  • 133
  • 2
    What? Your question has little to no context. What do you mean by sent via ToApp or ToAdmin? – Tim Feb 19 '15 at 17:37
  • The question makes sense within the context of QuickFIX, which allows an application to use `ToApp` and `ToAdmin` to add custom logic to handle outbound application messages and administrative messages, respectively. – hunch_hunch Feb 19 '15 at 17:44
  • Use this as a reference http://www.fixtradingcommunity.org/FIXimate/FIXimate3.0/latestEP/ – DumbCoder Feb 20 '15 at 11:23

1 Answers1

0

It's an administrative message, so it will be sent via ToAdmin.

hunch_hunch
  • 2,283
  • 1
  • 21
  • 26
  • Is there a list that defines which is which somewhere? It would be useful to know. – ManInMoon Feb 20 '15 at 01:28
  • Check out [FIXimate](http://www.fixtradingcommunity.org/FIXimate/FIXimate3.0/), and select whichever version of FIX you are using. The left side of the page lists Application Level (`ToApp`/`FromApp`) and Session Layer (`ToAdmin`/`FromAdmin`) messages. – hunch_hunch Feb 20 '15 at 14:25