Questions tagged [http-chunked]
74 questions
1
vote
2 answers
Netty - access content of chunked HTTP request (LittleProxy)
I'm intercepting an HTTP request with LittleProxy which uses Netty.
However, now I want to intercept a webservice request that apparently uses chunked transfer encoding.
The HTTP header looks like this
Content-Type -> text/xml; charset=UTF-8
Host ->…

Thomas
- 2,070
- 3
- 16
- 21
1
vote
1 answer
Using HttpClient 4.1 to decode chunked data
I am using HttpClient to send a request a server which is supposed to return xml data. This data is returned as chunked data. I am then trying to write the received xml data to a file. The code I use is shown below:
HttpEntity entity =…

kushaldsouza
- 710
- 5
- 12
- 36
1
vote
2 answers
Netty HttpChunckAggregator stateful --> race conditions?
Maybe this is a obvious ask, but I'm too new with netty.
Taking a look to HttpChunckAggregator class I see that it's stateful. That make me doubt... given a specific Channel with the following pipeline:
private MyServerHandler handler;
public…

Curro
- 1,331
- 1
- 13
- 24
0
votes
1 answer
When receiving a post with chunked encoding, PHP is unable to read the POST data via $_POST
I have two servers running on shared hosting with different providers. One is running PHP 5.2.9 in Apache 2.2.16, the other is running PHP 5.2.17.
Scripts on both servers work fine with my application unless they receive a POST with chunked…

sparkdino
- 65
- 2
- 6
0
votes
1 answer
Can I split a gziped content-encoding across multiple HTTP chunks?
Can I split a gziped content-encoding across multiple chunks? Are there any known implementations that fail with this?

unixman83
- 9,421
- 10
- 68
- 102
0
votes
0 answers
NGINX: How to optionally disable chunked_transfer_encoding?
So I was trying to write some logic in my nginx.conf file to disable chunked transfer encoding based on an if statement, but when I try to run it, I get the following message:
"nginx: [emerg] "chunked_transfer_encoding" directive is not allowed here…

Marcelo Portugal
- 1
- 1
0
votes
0 answers
Http chunk encoding miss end of chunked encoding("0\r\n") or tailer("\r\n") on IIS 7.5
I create a simple ASP.NET Application[.NET Framework 4.8] and write a generic web handler (HelloFilterWithClose.ashx).
HelloFilterWithClose.ashx ProcessRequest with setting a HttpResponse.Filter(MyFilter), and it response to http client with write a…

woniu17
- 1
- 1
0
votes
0 answers
how does Chrome DevTools knows content size of an incomplete http response
I got an har file exported by Chrome DevTools. It shows an incomplete http response with error net::ERR_INCOMPLETE_CHUNKED_ENCODING. the incomplete http response has been transfered 4096 bytes.
"content": {
"size": 67469,
…

woniu17
- 1
- 1
0
votes
0 answers
How do I read a http-chunked HEX response from a web api?
One of the apis I'm working with returns the response in a HEX format with a transfer-encoding: chunked header. Is there any way I can decode this to a readable json with python?

R.JEON
- 61
- 1
- 3
0
votes
0 answers
Chunked Transfer Encoding, Content-Length, and Byte Serving
In https://gist.github.com/CMCDragonkai/6bfade6431e9ffb7fe88, it says
Do note that byte serving is compatible with chunked encoding, this
would be applicable where you know the total content length, want to
allow partial or resumable downloads, but…

user994165
- 9,146
- 30
- 98
- 165
0
votes
1 answer
How do I read chunked HTTP responses on jmeter?
I am using jmeter to send a HTTP POST request. the server responds with a chunked http response 200 ok and I need to parse the initial chunk. However jmeter waits for all the response chunks.
I tried with the http sampler and http raw request…

Saranesh
- 35
- 3
0
votes
1 answer
Chunked transfer encoding doesn't work with any browsers except Firefox
I am working on my HTTP server and I applied chunked transfer encoding to my responses if the requested file is larger than 64K. It works fine with Firefox, I can even send large videos, but Chrome and Curl simply close the connection and don't…
0
votes
1 answer
URLSession didReceiveData isn't called in chunked request
I try to listen data from dweet.io service.
I use listen method to get data in realtime. It uses chunked HTTP responses.
I've created simple network manager for that
import Foundation
class NetworkManager: NSObject, URLSessionDataDelegate {
…

Nick Kibish
- 99
- 7
0
votes
1 answer
File download in chunks in http-context response C#
I have a below scenario.
Client send request to Server-1 for file download
Server-1 send request to Server-2 for file.
To make this work I need to create a mechanism where once client send request to the Server-1, Server-1 will request to Server-2…

Krunal Zala
- 1
- 2
0
votes
1 answer
Chunked HTTP request
I try to use chunked http request on ODIN-W2 with mbedOS. I have next http request/response:
POST /post HTTP/1.1
Accept: */*
Accept-Encoding: gzip
Accept-Language: uk,en-US;q=0.8,en;q=0.5,ru;q=0.3
Cache-Control:…

Дмитро Медвідь
- 11
- 5