You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm connecting to a broker that sends my TargetSubID as the second to last field in their ExecutionReport messages, and that causes QuickFix to reply with a Reject message.
ValidateFieldsOutOfOrder=N
in my config or
SessionSettings settings = new SessionSettings("config.cfg");
Dictionary defaults = settings.Get();
defaults.SetBool(SessionSettings.VALIDATE_FIELDS_OUT_OF_ORDER, false);
settings.Set(defaults);
IMessageStoreFactory storeFactory = new FileStoreFactory(settings);
ILogFactory logFactory = new FileLogFactory(settings);
this.application = new Quickfix.Application();
this.initiator = new QuickFix.Transport.SocketInitiator(application, storeFactory, settings, logFactory);
for good measure seem to have no effect, the execution report still gets rejected.
The text was updated successfully, but these errors were encountered:
I'm connecting to a broker that sends my TargetSubID as the second to last field in their ExecutionReport messages, and that causes QuickFix to reply with a Reject message.
ValidateFieldsOutOfOrder=N
in my config or
for good measure seem to have no effect, the execution report still gets rejected.
The text was updated successfully, but these errors were encountered: