ok2c commented on issue #147: MultipartEntity limit 25Kb Size URL: https://github.com/apache/httpcomponents-client/pull/147#issuecomment-489033054 @teahyuk entities generated by `MultipartEntityBuilder` rely on classic (inherently blocking) `InputStream` / `OutputStream` APIs. Those do not work well with non-blocking agents such as `HttpAsyncClient`. You should either consider using classic `HttpClient` or buffer the entire entity in memory with `BufferedHttpEntity` wrapper class.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
