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
Gary Russell opened INT-3818 and commented
Allow proxying multipart/form-data requests.
multipart/form-data
Currently, we decode the multipart to a MultiValueMap with UploadedMultipartFile elements which cannot be handled by the multipart converter on outbound.
MultiValueMap
UploadedMultipartFile
A pass-thru converter will allow the form data to remain as a byte[] which can be proxied.
byte[]
Reference URL: http://stackoverflow.com/questions/32340610/spring-integration-multipart-form-uploads-route-with-json-response-not-working/32361053#32361053
Referenced from: pull request #1563
The text was updated successfully, but these errors were encountered:
garyrussell
No branches or pull requests
Gary Russell opened INT-3818 and commented
Allow proxying
multipart/form-data
requests.Currently, we decode the multipart to a
MultiValueMap
withUploadedMultipartFile
elements which cannot be handled by the multipart converter on outbound.A pass-thru converter will allow the form data to remain as a
byte[]
which can be proxied.Reference URL: http://stackoverflow.com/questions/32340610/spring-integration-multipart-form-uploads-route-with-json-response-not-working/32361053#32361053
Referenced from: pull request #1563
The text was updated successfully, but these errors were encountered: