[QFJ-372] Creating Custom Groups Created: 20/Nov/08 Updated: 20/Mar/11 Resolved: 20/Mar/11 |
|
Status: | Closed |
Project: | QuickFIX/J |
Component/s: | None |
Affects Version/s: | None |
Fix Version/s: | None |
Type: | Other | Priority: | Default |
Reporter: | Herman Hung | Assignee: | Unassigned |
Resolution: | Fixed | Votes: | 0 |
Labels: | None |
Description |
Hi, I would like to know how to read a non-standard group type from messages (in other words, a group not defined via FIX standard). The group starts with tag 552 (NoSides), and proceeds with tags 54, 37, 11, 453 (NoPartyIDs, which is a sub group), and 58. public class NoSides extends quickfix.Group { public NoSides() { super(552,54); }} Where, if I'm reading the documentation correctly, 552 should specify the number field of the group (NoSides), and 54 should NoSides group = new NoSides(); But I don't think that that is working correctly. Any advice? Thanks, |
Comments |
Comment by Steve Bate [ 26/Nov/08 ] |
What kind of problem are you having? |