Re: [Quickfix-developers] FIX 5.0 - resend request
Brought to you by:
orenmnero
From: Joseph La V. <jo...@la...> - 2017-11-08 14:03:33
|
I am confused here, I am useing the FIX50SP2.xml file and i see <value enum='2' description='RESENDREQUEST' /> in that file. But ResendRequest comes from the meta data on the DLL. Are you saying I need to rebuild the DLL ? thanks for you assitance, Joe -----Original message----- From: Ale...@mh... Sent: Wednesday, November 8 2017, 2:30 am To: Joseph La Valle Cc: qui...@li... Subject: Re: [Quickfix-developers] FIX 5.0 - resend request Hi Joe, You are only having this issue as the default FIX50.xml spec file doesn't hold the definition for admin messages. If you update the FIX50.xml file and run the generate.bat file you will be able to code the v5.0 in the same way as v4.4 Regards, Alex From: "jo...@la..." <jo...@la...> To: qui...@li..., Date: 07/11/2017 19:25 Subject: [Quickfix-developers] FIX 5.0 - resend request -------------------------------- QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/ What is the proper way to get all messages sent for the day already in FIX 5.0? I am currently having to send something like this but don't think this is best. msg.Header.SetField(new QuickFix.Fields.MsgType("2")); msg.SetField(new QuickFix.Fields.BeginSeqNo(1)); msg.SetField(new QuickFix.Fields.EndSeqNo(99999)); Session.SendToTarget(msg, _session.SessionID); in 4.4 I would have done QuickFix44.ResendRequest resendrequest = new QuickFix44.ResendRequest QuickFix44.ResendRequest(new QuickFix.BeginSeqNo(1), new QuickFix.EndSeqNo(9999999)); Session.sendToTarget(resendrequest, _session); -- Sent from: http://quickfix.13857.n7.nabble.com/QuickFIX-Dev-f1677.html ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot _______________________________________________ Quickfix-developers mailing list Qui...@li... https://lists.sourceforge.net/lists/listinfo/quickfix-developers Do you really need to print this email? Please think about the environment. +----------------------------------------------------------------+ This message and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this message in error please delete it and any files transmitted with it, after notifying pos...@mh.... Any opinions expressed in this message may be those of the author and not necessarily those of the Company. The Company accepts no responsibility for the accuracy or completeness of any information contained herein. This message is not intended to create legal relations between the Company and the recipient. Recipients should please note that messages sent via the internet may be intercepted and that caution should therefore be exercised before despatching to the Company any confidential or sensitive information. Authorised and regulated by the Financial Services Agency of Japan. Authorised by the Prudential Regulation Authority. Subject to regulation by the Financial Conduct Authority and limited regulation by the Prudential Regulation Authority. Details about the extent of our regulation by the Prudential Regulation Authority are available from us +----------------------------------------------------------------+ |