|
From: M J <mje...@gm...> - 2021-05-21 20:05:50
|
Hi,
I don't know if this helps but it is always good to see how an existing
group is formed in order for one to get an idea of how to build and
structure modifications. For example, this is existing group definition in
xml:
<component name="RootParties">
<group name="NoRootPartyIDs" required="N">
<field name="RootPartyID" required="N"/>
<field name="RootPartyIDSource" required="N"/>
<field name="RootPartyRole" required="N"/>
<component name="RootSubParties" required="N"/>
</group>
</component>
Source for this group is:
private static final int[] ORDER = {1117, 1118, 1119, 1120, 0};
public NoRootPartyIDs() {
super(1116, 1117, ORDER);
}
So you get an idea how this order is constructed.
1116 = NoRootPartyIDs
1117=first element in a group = RootPartyID
and order of all other elements to follow.
And this is the analogy you use when making modifications.
So, look up the source for QuotReqGrp 8or the one you are interested in if
this is not the one) to see embedded order.
Hopefully this helps a bit.
Regards
Matjaž
V V pet., 21. maj 2021 ob 18:34 je oseba Ajit Gautam <
aji...@gm...> napisala:
> QuickFIX/J Documentation: http://www.quickfixj.org/documentation/
> QuickFIX/J <http://www.quickfixj.org/documentation/QuickFIX/J> Support:
> http://www.quickfixj.org/support/
>
>
> Hi,
>
> I added two custom fields in financing details component of Quote request.
> I added these two custom fields in before start date field in financing
> details component.
> I added the field number as well as added in financing details component
> in FIX 44 XML data dictionary.
>
> After rebuilding,
> While sending data from my FIX Initiator, these two custom fields are
> appending at the end of my message structure.
> Thus , I m receiving a error-
> "Out of order repeating group members".
>
> I would appreciate if anyone can help me on this.
>
> Regards
> Ajit Gautam
> _______________________________________________
> Quickfixj-users mailing list
> Qui...@li...
> https://lists.sourceforge.net/lists/listinfo/quickfixj-users
>
|