|
From: kp1983 <pal...@gm...> - 2010-11-04 16:51:09
|
Hello,
Even i have the same problem as Stacy had. I am getting an exception.
FieldNotFound : 453, index=1
below is my code snippet.
quickfix.fix44.TradeCaptureReport.NoSides.NoPartyIDs nopartyids = new
quickfix.fix44.TradeCaptureReport.NoSides.NoPartyIDs();
noPartyID = message.getNoPartyIDs.getValue();
int i=1;
if(i<=noPartyID)
{
message.getGroup(i,nopartyids);
partyid = nopartyids.getPartyID().getValue();
partyIDSource = nopartyids.getPartyIDSource().getValue();
partyRole = nopartyids.getPartyRole().getValue();
i++;
}
But it gives me exception at message.getGroup(i,nopartyids);
Kunal
--
View this message in context: http://quickfix-j.364392.n2.nabble.com/Multiple-PartyId-s-tp364798p5706043.html
Sent from the QuickFIX/J mailing list archive at Nabble.com.
|