Chunked transfer encoding is a data transfer mechanism in version 1.1 of HTTP in which data is sent in a series of "chunks"
Questions tagged [chunked]
240 questions
3
votes
2 answers
How do I do a chunked transfer-encoding upload with WWW:Mechanize?
I'm attempting to use a particular web service, and I can successfully perform the upload with the following command:
curl -X POST --header "Transfer-Encoding: chunked" -d @Downloads/file.pdf https://some.webservice/upload
I get back a json…

John O
- 4,863
- 8
- 45
- 78
3
votes
1 answer
How to make sure that you have read the "full message" when using "Transfer-Encoding:chunked" http response
I am using HttpUrlConnection (java) to read the http chunked response(Transfer-Encoding:chunked) like following and I am able to read the message. But, how can I make sure that I have read all the chunks the correctly and the message read is…

Tanya
- 203
- 3
- 7
3
votes
0 answers
Chunked HTTP POST request:
This is what my chunked POST request looks like. I am trying to send chunks of data from an SD card on the arduino to a server through a chunked POST request. Need chunked as it will allow me to send the data which will not all fit into the…

gnicholas
- 2,041
- 1
- 21
- 32
3
votes
2 answers
How to get InputStream from request in Play
Ithink this used to be possible in Play 1.x, but I can't find how to do it in Play 2.x
I know that Play is asynchronous and uses Iteratees. However, there is generally much better support for InputStreams.
(In this case, I will be using a streaming…

Paul Draper
- 78,542
- 46
- 206
- 285
3
votes
3 answers
How to send file in JSON on android?
I want to send files in JSON using http client I don't know how would I start can anyone suggest what should I need to do? I'm going to send data on this JSON format:
{
"Filename": "282850ad-de5c-498f-8280-2d4b6d77b774.jpg",
"ChunkId":1,
…

NewDroidDev
- 1,656
- 5
- 19
- 33
3
votes
1 answer
Binary data corrupted when hosting ServiceStack in Mono + FastCGI
I have a ServiceStack service with a method to handle a GET request. This method returns binary data.
public object Get(DownloadFile request) {
return new HttpResult(new FileInfo("some file"), "application/octet-stream", asAttachment:…

woli
- 105
- 1
- 6
3
votes
0 answers
Chunked SOAP message parsing for logging output
I have a JBoss web service (5.1) using EJB3 to run apps for dao updates/inserts on our MSSQL server.
Part of the app setup includes a custom SOAPHandler, which is used to parse the xml from the message in ByteArray[Output/Input]Stream and print it…

Rich
- 867
- 7
- 12
3
votes
2 answers
chunked HTTP upload with Python
I've developed a REST api to handle file uploads. Since the system handles large files the api handles upload with chunked encoding. The api work fine with JQuery's file upload plugin so there are no problems on the server side.
I'm currently…

ztripez
- 664
- 6
- 24
2
votes
1 answer
How to generate chunked request in Fiddler?
I need to test a server and to send a chunked request from Fiddler. I need to send something very simple, for example 'a' character as a content.
There is a Request Builder tab where I can set Transfer-Encoding: chunked header, but how do I specify…

IT Hit WebDAV
- 5,652
- 12
- 61
- 98
2
votes
0 answers
Vaadin Audio player, seek not working - chunked response
i am working on my gwt prj,
i have added the Vaadin audio player for mp3 file.
The issue is that on Chrome, the seek bar of the audio sometimes don't work.
My code is:
StreamResource resource = new StreamResource(this, filename);
Audio audio = new…

monotor
- 107
- 5
2
votes
0 answers
How can I use flutter uploader and chunk uploader on the same request
I am searching for a way to upload a chunked image in a background task in flutter for Android. I already took a look at flutter_uploader and chunked_uploader plugins but it don't seems they are compatible.
Here is the documentation for the API I am…

Remi Martin
- 51
- 6
2
votes
3 answers
How to download a page with "Transfer-Encoding:chunked" prior to PHP 5.2
Trying to retrieve a page from the XML language. However, retrieval is unreliable because it is a chunked transfer encoding. How do I download this page correctly to give me further editing?
I can not use PHP Stream Filters because my PHP version is…

trymerson2010
- 21
- 1
- 2
2
votes
1 answer
Laravel Chunk Upload skipping one chunk
I am using laravel-chuck-upload in combination with dropzone.js. Everything works fine, the chunks are uploading and when they are uploaded the final file will be saved in S3. The problem is that 1 chunk is always missing. Sometimes .8.part is…

Bart Bergmans
- 4,061
- 3
- 28
- 56
2
votes
0 answers
Posting chunked Multipart/form-data using cfhttp with different content-type
Quite recently, I was working with a third party REST API to which I was to POST a multipart/form-data consisting of two parts - one with a json object and the other with a pdf blob. The format of the body was as below:
--boundary
Content-Type:…
2
votes
0 answers
Problem with IOS Cant play the external video files
I have an external mp4 files to be playable in proxy chunked with php code, here's the Php code, and the code is working fine on android and desktop user, but getting stuck with IOS /iphone safari

Laura Zyphy
- 21
- 1