Fix XEP-0124 BOSH compliance: overactivity exception, ack handling, sentElements cleanup#3192
Closed
Fix XEP-0124 BOSH compliance: overactivity exception, ack handling, sentElements cleanup#3192
Conversation
…ing, sentElements cleanup Co-authored-by: akrherz <210858+akrherz@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] [OF-1109] Review and fix HTTP-Bind/BoSH support for XEP-0124
Fix XEP-0124 BOSH compliance: overactivity exception, ack handling, sentElements cleanup
Mar 13, 2026
Member
|
@copilot I have raised these new JIRA tickets for the fixes that you created:
Evaluate them to see if they correctly describe the issues that you fixed. To replace this PR, create three new PRs, each addressing a single JIRA issue. Use the issue number in the title of each commit. Also include a reference to the corresponding JIRA issue (using a javadoc @see tag) to the new, individual unit tests where applicable. |
Contributor
Author
Member
|
@copilot that is not what I wanted. Lets try something else. Create a new PR that only holds three commits, which includes each of the changes discussed here. |
Contributor
Author
Member
|
Copilot didn't exactly do what I wanted. I've manually created the desired PR in #3229 - that PR replaces this PR. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Openfire's BOSH implementation had several deviations from XEP-0124 around request acknowledgements, overactivity enforcement, and retransmission buffer management.
Changes
Overactivity check allows pause/terminate exception (§11)
Per spec, clients MAY send one additional simultaneous request if it is a pause or terminate. Previously the check fired at
pendingConnections >= maxRequestsunconditionally, rejecting valid pause/terminate requests from clients already at the limit.Parse client
ackattribute from request bodies (§9.2)Added
HttpBindBody.getAck()to expose the client's acknowledged RID. When present, acknowledged entries are now pruned from thesentElementsretransmission buffer rather than relying solely on a size cap ofmaxRequests.Omit redundant
ackin responses (§9.1)asBodyText()andcreateEmptyBody()now accept the responding-to RID and suppress theackattribute when it would be identical—the common steady-state case.Tests
Added
HttpBindBodyTestcoveringgetAck()(present/absent/invalid/initial-value),getRid(), andisPoll()variants.💬 Send tasks to Copilot coding agent from Slack and Teams to turn conversations into code. Copilot posts an update in your thread when it's finished.