-
Notifications
You must be signed in to change notification settings - Fork 564
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sub Group not cleared, causes issue parsing messages #179
Milestone
Comments
Pretty sure it is the same as #176. We'll see how QF/C++ and QF/J handles group assignment. For consistency, we'll do it the same as them. (The status quo might actually be what they do, which means this is not a bug, though we can certainly improve the docs.) |
Closed
gbirchmeier
added a commit
that referenced
this issue
May 15, 2013
gbirchmeier
added a commit
that referenced
this issue
May 15, 2013
gbirchmeier
added a commit
that referenced
this issue
May 15, 2013
fix for #179 (issue parsing message groups when null message factory)
hlibman-connamara
pushed a commit
to hlibman-connamara/quickfixn
that referenced
this issue
Dec 6, 2024
hlibman-connamara
pushed a commit
to hlibman-connamara/quickfixn
that referenced
this issue
Dec 6, 2024
hlibman-connamara
pushed a commit
to hlibman-connamara/quickfixn
that referenced
this issue
Dec 6, 2024
fix for connamara#179 (issue parsing message groups when null message factory)
hlibman-connamara
pushed a commit
to hlibman-connamara/quickfixn
that referenced
this issue
Dec 6, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When parsing a message using FromString, I am getting an error
Expected BodyLength=733, Received BodyLength=638
The reason for this looks to be because when the message is being parsed, a parties sub block (tag 802) in one of the parties blocks is not being cleared for subsequent party blocks.
I sent in the following message (newlines inserted for clarity):
This message is 662 characters long, with a BodyLength of 638.
But it looks like this was parsed as the following:
This message is 757 characters long, with a BodyLength of 733.
The tags 802, 523 and 803 seem to have been copied onto each party (448) block, despite only having been supplied on the first one.
Not sure if this is related to item #176?
The text was updated successfully, but these errors were encountered: