-
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
Handling a multipart request part as a file based on the content-type #29725
Comments
/cc @FroMage, @geoand, @stuartwdouglas |
pedroigor
added a commit
to pedroigor/quarkus
that referenced
this issue
Dec 7, 2022
pedroigor
added a commit
to pedroigor/quarkus
that referenced
this issue
Dec 7, 2022
pedroigor
added a commit
to pedroigor/quarkus
that referenced
this issue
Dec 7, 2022
pedroigor
added a commit
to pedroigor/quarkus
that referenced
this issue
Dec 7, 2022
essobedo
pushed a commit
to essobedo/quarkus
that referenced
this issue
Dec 12, 2022
gsmet
pushed a commit
to gsmet/quarkus
that referenced
this issue
Dec 14, 2022
Closes quarkusio#29725 (cherry picked from commit f54a303)
gsmet
pushed a commit
to gsmet/quarkus
that referenced
this issue
Dec 20, 2022
Closes quarkusio#29725 (cherry picked from commit f54a303)
9 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
Currently, Resteasy Reactive only handles a multipart request field as a file if the
fileName
parameter is set.The proposal here is to also allow handling file parts based on the content-type set to a field.
The main use case for this RFE is programmatically handling multipart requests where fields are obtained directly from the
FormData
instance associated with the request and their filenames are not known by the application, but only the content-types.Related to:
Implementation ideas
quarkus.http.body.multi-part.file-content-types
setting to set a list of content-types that should be used to handle file parts in a multipart requestMultiPartUploadHandler
to recognize the setting above and process parts accordingly to their content-typeThe text was updated successfully, but these errors were encountered: