CXF-7860: Ensure @FormParam parms are consistent with Form entities #453
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.
This addresses an issue surfaced by the Jakarta JAX-RS API community in Issue 659 where a parameter marked as
@FormParam
may be injected with a value that is inconsistent with an entityForm
parameter. The latter will have the latest contents of the HTTP form body stream whereas the former will not - modifications made to the HTTP form body during filters or interceptors will be lost, thus it is possible that the following code would fail:This change ensures that the
@FormParam
parameters will match the values in theForm
parameter. There is probably an optimization that I am missing that would only perform this logic if the input stream were modified - suggestions welcome on how I could best do this. Thanks!