QuickFIX/J

Nested Group do not support 'ValidateFieldsOutOfOrder' configure

Details

  • Type: Bug Bug
  • Status: Closed Closed
  • Priority: Critical Critical
  • Resolution: Duplicate
  • Affects Version/s: 1.5.0
  • Fix Version/s: 1.5.1
  • Component/s: None
  • Labels:
    None
  • Environment:
    Windows.... jdk 1.5

Description

The ValidateFieldsOutOfOrder configure do not support for nested group ....


this option only valid for root DataDictionary But not add to group level data dictionary.....


I think it is better rewrite the DataDictionary#setCheckFieldsOutOfOrder like this:



  public void setCheckFieldsOutOfOrder(boolean flag) {

     checkFieldsOutOfOrder = flag;
        
        for (GroupInfo info:groups.values())
        {
           DataDictionary dic=info.getDataDictionary();
           
           if(null!=dic)
           {
         dic.setCheckFieldsOutOfOrder(flag);
           }
        }
    }

Issue Links

Activity

Hide
Eric Deshayes added a comment - 29/Apr/11 3:57 PM

This is a duplicate of QFJ-535

Show
Eric Deshayes added a comment - 29/Apr/11 3:57 PM This is a duplicate of QFJ-535

People

Vote (0)
Watch (0)

Dates

  • Created:
    22/Jul/10 8:28 AM
    Updated:
    29/Apr/11 3:57 PM
    Resolved:
    29/Apr/11 3:57 PM