Multipart support for RR client #36780
-
We are moving from 3.2.6.Final to 3.4.3 and we need to change code about multipart because we are still using legacy RR support which doesn't work with new version.
Old code relied on legacy rest-client support (https://stackoverflow.com/a/64801524/2587166) and all worked fine but with new version I'm unable to build-up a generic multipart form programmatically and send via rest-client. Regards |
Beta Was this translation helpful? Give feedback.
Replies: 7 comments 9 replies
-
Any advice? :) |
Beta Was this translation helpful? Give feedback.
-
up |
Beta Was this translation helpful? Give feedback.
-
I have discovered QuarkusMultipartForm and I was able to convert a |
Beta Was this translation helpful? Give feedback.
-
Finally i had got success with using #QuarkusMultipartForm multipart-quarkus So the following code snippet in needed.
Spring Controller details
|
Beta Was this translation helpful? Give feedback.
-
multipart-quarkus project gives to me a 404...can you make it available again? |
Beta Was this translation helpful? Give feedback.
-
We now have |
Beta Was this translation helpful? Give feedback.
-
Guys, I am using an application exactly with the settings of the apps that @Debu999 posted above, but when I send more than one file, it shows a MalformedMessage error, with just one file, it works normally. Does anyone have a solution? |
Beta Was this translation helpful? Give feedback.
We now have
ClientMultipartForm
to build instead ofQuarkusMultipartForm
This is targetted for 3.7 and the same has been merged to main branch today including documentation.