Details
Description
QuickFIX configuration flag ValidateFieldsOutOfOrder=N has been applied. Although QuickFIX/J should ignore field ordering on all repeating group levels (as specified by ValidateFieldsOutOfOrder=N), some session rejects from the engine have been observed by the clients and in internal test, which reject FIX messages because of improper field ordering (example: reversed order of PartyIDSource (447) and PartyRole (452) in the Parties group). After reviewing the QuickFIX/J source code, it has been established that the cause of the problem is that the flag is not propagated properly to second and higher groups levels in the recursive validation of the FIX message.
Fixed: propagate the flag properly.
public void setCheckFieldsHaveValues(boolean flag) {
checkFieldsHaveValues = flag;
for(GroupInfo gi : groups.values())
}
(Internal reference: IC_58606)
Attachments
Issue Links
- is duplicated by
-
QFJ-546 Nested Group do not support 'ValidateFieldsOutOfOrder' configure
- Closed