streaming response body to a streaming request body with java 11 HttpClient
I’m trying stream the data from an HTTP (GET) response to another HTTP (POST) request. With old HttpURLConnection I would take the responses OutputStream, read parts into a buffer and write them to …