[Quickfix-developers] LegSecAltIDGrp in QuickFIX/J FIX50.xml
Brought to you by:
orenmnero
From: Michael C. S. <hik...@gm...> - 2016-03-06 22:30:10
|
Hi, I believe there is an error in FIX50.xml at line 4138 in the components element. <component name="LegSecAltIDGrp"> <field name="NoLegSecurityAltID" required="N"/> </component> In the other xml files, as well as the FIX 4.4 spec, the component is defined as a repeating group. I believe the element should be defined as in the FIX44 xml file as follows: <component name="LegSecAltIDGrp"> <group name="NoLegSecurityAltID" required="N"> <field name="LegSecurityAltID" required="N"/> <field name="LegSecurityAltIDSource" required="N"/> </group> </component> If this isn't an error, please let me know as it adversely effects a quickfixj data dictionary parser I am building. Thanks |