-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
FileUpload is null when uploading file with Resteasy Reactive #23079
Comments
/cc @FroMage, @geoand, @stuartwdouglas |
don't know if it can help but i write a small request filter to print out the entity body of request and the 'document' part is not null in the filter (i have truncated it in the console output bellow)
Filter output
|
The @stuartwdouglas should we update the parser to handle this use case? I personally think what RESTEasy Reactive does currently is correct FWIW... |
Hi @geoand , |
Great to hear! I will close this issue as a duplicate of #20938. |
Describe the bug
I have a Resteasy client (JSF app running on WildFly) from wich i upload file to quarkus resteasy classic app and it's work well.
When i use the same client with a resteasy reactive app the 'FileUpload' part of the multipart-form is always null.
Pojo enclosing Multipart body on my client side (JSF app)
Endpoint on quarkus resteasy classic
the MultipartBody pojo is the same im using on my client side
Console output when uploading file
All parts of the multipart-form are present.
Endpoint on quarkus resteasy reactive
it's the same as the classic one but changing all dependencies in pom to resteasy reactive
MultipartBody pojo on quarkus resteasy reactive
Console output when uploading file
The 'document' part corresponding to FileUpload property of MultipartBody is always null , the others properties are correctly set.
Expected behavior
No response
Actual behavior
No response
How to Reproduce?
No response
Output of
uname -a
orver
No response
Output of
java -version
11
GraalVM version (if different from Java)
No response
Quarkus version or git rev
2.6.3
Build tool (ie. output of
mvnw --version
orgradlew --version
)No response
Additional information
No response
The text was updated successfully, but these errors were encountered: