Questions tagged [chunked]
20 questions
0
votes
1 answer
Does httpd ProxyPass buffer http POST payload before sending it to backend server?
I'm looking to assert whether, in the case of httpd used as a reverse proxy (mod_proxy_http & ProxyPass) and with a POST request (not chunked), if httpd buffers (memory and/or disk) complete request (POST payload included) BEFORE initiating/starting…

Ahmed
- 1
- 1
0
votes
0 answers
Un-chunking chunked response for varnish
I have a database query tool that returns data with Transfer-encoding: chunked. I'd like to use existing varnish infrastructure to cache responses from this tool, but varnish refuses to cache chunked documents. Between varnish and the tool itself,…

StasM
- 163
- 1
- 1
- 7
0
votes
1 answer
Nginx reverse proxy repackaging chunked responses
I am running nginx/1.1.19:
# nginx -V
nginx version: nginx/1.1.19
TLS SNI support enabled
configure arguments: --prefix=/etc/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log…

pkaeding
- 810
- 2
- 13
- 23
-1
votes
1 answer
Why is my chunked request removing the trailing CRLF?
I've just spent the past 10 hours trying to figure out why my http request was failing when I did a
request.Content.ReadAsMultipartAsync().Result.Contents
It kept returning the error:
Unexpected end of MIME multipart stream. MIME multipart message…

Scottie
- 169
- 1
- 6
-1
votes
1 answer
Do I need to handle chunked HTTP requests if I only work with GET requests?
I am writing a Netty server that handles HTTP GET requests from the browser to serve scripts or pixels.
My understanding is that there is no reason why I would receive chunked requests as all I need is either in the URI or the cookie but is there…

Mad Echet
- 101
- 3