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
0
votes
1 answer
HTTP Chunked Transfer Coding and MFC
I have a Proprietery Client-Server application written in MFC. No clients other then my client is going to communicate with the server . For safetly reason , we are using HTTP.
Until know , we used content-length to describe the client where the…

user88637
- 11,790
- 9
- 37
- 36
0
votes
1 answer
Consume RESTful api chunked keep-alive CORS authenticated
I’m new to JavaScript. My question is simple. I need to consume RESTful api (twitter data via Twitcident) with following requirements
- CORS (cross origin Request)
- Authenticated (username and password) with credentials
- chunked, keep-alive…

Ramesh Narayan
- 43
- 8
0
votes
1 answer
Chunked download in Scala/Java
I use youtube-dl to obtain the URL of the binary stream of a YouTube video, that for whatever reason i'd like to download, i do it like this:
youtube-dl -f bestaudio -g --skip-download https://www.youtube.com/watch?v=nk5YtLYcH74
After i have the…

Hunor Kovács
- 1,062
- 9
- 16
0
votes
1 answer
Sending large file over network
First my apology for lengthy description. But I try my best to make it to the point.
The objective is to group individual files with combined size of 50MB and send multiples of 50MB each. Because I don't want to send a very small file over network…

grek
- 93
- 1
- 11
0
votes
1 answer
http 1.1 GET command issue
I can download a test.pdf file using this get command below with a code that I've in C for a microcontroller to communicate with a server:
GET /TestFolder/test.pdf HTTP/1.1\r\n Host: www.xyz.com\r\n\r\n
the file: test.pdf is located in folder:…

ASG
- 39
- 1
- 4
0
votes
1 answer
Multi part file uploading method
Im trying to upload faster. My connection upload limit is ~2Mbit and upload speed is ~200Kb. When i try to upload 10Mb file, it finished ~50 secs. I want to do faster.
Is there any method like that multi part file uploading. For example…

Bora
- 10,529
- 5
- 43
- 73
0
votes
1 answer
No chuncks uploaded using plupload and flash
I'm using plupload 2.1.2 and chunked upload. Runtime is set to flash for testing, chunk-size is 5242880.
When i start uploading, i don't get any chunk uploading calls but after a short time, i get a FileUploaded callback.
The test-file I'm using is…

secador de pelo
- 687
- 5
- 26
0
votes
0 answers
Pause/Resume Uploading file in Android
Currently I'm using following code to upload file to server.
private void doFileUpload(){
HttpURLConnection conn = null;
DataOutputStream dos = null;
DataInputStream inStream = null;
String lineEnd = "rn";
String twoHyphens =…

Rahul Shirphule
- 989
- 3
- 14
- 36
0
votes
0 answers
Can chunked transfer encoding be disabled for SignalR when using server-sent events?
I'm having trouble with the server-sent events transport in SignalR when the client is behind a web proxy. From the user's experience, SignalR tries to make the serverSentEvents connection, that fails so 5 seconds later it falls back to…

Nogwater
- 2,777
- 3
- 28
- 28
0
votes
0 answers
Handle response using transfer-encoding: gzip,chunked
I'm trying to handle the response using transfer-encoding: gzip, chunked.
If you run the code below (e.g node server.js), you should get "foobar" in your console but the process seems to be hanging.
var HTTP = require('http');
var request =…

Troger Xentos
- 1
- 1
0
votes
1 answer
nginx chunked transfer encoding fails
I am using an implemention of nginx with jetty servlets.
For the purpose of my project I need to initialize two connection to the jetty servlet and keep them open.
To initialize the downlink I use a normal request and I get the inputstream back.…

imps
- 1,423
- 16
- 22
0
votes
0 answers
apache mod_cache stores but doesn't serve url with 'Transfer-Encoding: chunked'
I have setup apache2 with django and mod_wsgi in Debian Wheezy. I enabled mod_mem_cache with this configuration:
CacheEnable mem /
MCacheSize 400000
MCacheMaxObjectCount 100
MCacheMinObjectSize 1
…

eviekass
- 1
0
votes
1 answer
How to use Apache AyncHttpClient to send chunked requests
I want to have a send a request body generating the body a piece at a time, but without knowing the entire length ahead of time. In other words, I need to send a chunked request.
I can't find how to do this.
The main distinction between two types…

Paul Draper
- 78,542
- 46
- 206
- 285
0
votes
1 answer
A specific Request is not getting recording in Jmeter 2.9
I tried to record a complete screen but unable to record a single Response.
The Screen is for getting live data. So when I clicked on Live Data the page is getting recorded(Jmeter2.9) apart from the Response which contains the Live Data.
It is…

chinmay brahma
- 97
- 4
- 17
0
votes
1 answer
Writing ChunkedFile to context in netty never calls 'operationComplete'
I'm trying to implement some kind of http proxy in netty and for this i need to send several files from the disk one by one. For that i implemented simple ChannelFutureListener that on 'operationComplete' sends next file:
public class…

akashihi
- 917
- 2
- 9
- 19