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
2 answers
Facing issue while chunking then merging the jar files
I have one jar file for example apache-cassandra-3.11.6.jar.
Firstly i split/chunked into mutiple jars like below :…

Mohammad Wasim Khan
- 95
- 1
- 1
- 9
0
votes
2 answers
HttpPost returns only part of response body
I'm performing login on server using HttpPost method.
CommonsConnection.initHttpConnection();
HttpResponse response;
String contentOfMyInputStream;
HttpGet initPostMethod = new HttpGet("https://stat.volia.com:8443/ktvinet/index.jsp");
response =…

saikek
- 1,099
- 1
- 8
- 15
0
votes
0 answers
TCP and Wireshark: Two consecutive TCP packets instead of having an ACK for each of them
We have an application (client and server), deployed in two different environments (staging and production). Both environments are theoretically configured exactly... The client is sending data in a POST request, and the server is returning a 200 OK…

albertolsa
- 1
- 1
0
votes
1 answer
How to Implement Huawei's Chunked File Upload Using Java
I need to implement a deployment pipeline, and at the end of the pipeline, we are uploading a file, in this case, to Huawei's app store. But for a file with more than 5 megabytes in size, we have to use a chunked API. I'm not familiar of how chunked…

Mycotina
- 369
- 3
- 11
0
votes
1 answer
Telnet on Linux - can i set Transfer-encoding: chunked as option of GET?
I want to get chunked response from server, but i can't understand - what wrong i did in this terminal log:
telnet www.google.com 80
Trying 172.217.20.36...
Connected to www.google.com.
Escape character is '^]'.
GET / HTTP/1.1
Transfer-Encoding:…
user11086399
0
votes
2 answers
Chunked Transfer Encoding Terminator Sequence and TCP recv()
import ssl
import socket
ssl_context = ssl.create_default_context()
target = 'swapi.co'
port = 443
resource = '/api/people/1/'
client = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
secure_client = ssl_context.wrap_socket(client,…

Sıddık Açıl
- 957
- 8
- 18
0
votes
1 answer
Examples that send unkown size data with http chunked header?
I still don't have a clear picture of practical examples of the chunked header usage, after reading some posts and Wikipedia.
One example I see from Content-Length header versus chunked encoding, is:
On the other hand, if the content length is…

Rick
- 7,007
- 2
- 49
- 79
0
votes
1 answer
Should I send http data chunk by chunk if I use chunk encoding?
I understand that HTTP chunk is something like this
HTTP/1.1 200 OK
Content-Type: text/plain
Transfer-Encoding: chunked
7\r\n
Mozilla\r\n
9\r\n
Developer\r\n
7\r\n
Network\r\n
0\r\n
\r\n
When server send response data to client, should the…

garen96
- 175
- 1
- 9
0
votes
1 answer
What's the maximum audio time for chunked data in Wit.ai?
I'm try to send a speech on wit.ai but I did not understand if I'm possible send audio file greater than 10 seconds if I send chunked data less than 10 seconds each one.

Luigi De Francisci
- 189
- 2
- 6
0
votes
1 answer
Iterate over and validate large uploaded CSV files in Django
I'm using the Django module django-chunked-upload to receive potentially large CSV files. I can assume the CSVs are properly formatted, but I can't assume what the delimiter is.
Upon completion of the upload, an UploadedFile object is returned. I…

nbwoodward
- 2,816
- 1
- 16
- 24
0
votes
1 answer
Chunked Stream Responds Incorrectly
Sorry for such a vague title, I really dont know what to title this issue.
Basically when I get a stream thats chunked as told by Transfer-Encoding, I then do the following code:
private IEnumerable ReceiveMessageBodyChunked() {
…

Ma Dude
- 477
- 1
- 5
- 17
0
votes
0 answers
How to transfer audio data continuously to the server in iOS by Http Post Chunked?
Recently , I am working on a rare iOS task. I am going to transfer the audio data to the server when recording . The server only accept http post chunked request. And the params of request should be set in the http request header. Has anyone ever…

Shawn De
- 21
- 3
0
votes
1 answer
How do you divide a byte array into chunks in Scala?
I am trying to implement chunking logic based on a various file sizes from 0MB to 15MB. I have a byte array of the file but I am trying to chunk the array into chunks that are less than 5MB.
For example if I have a file that is 10.6MB (1.06e+7…

Farhan Islam
- 609
- 2
- 7
- 21
0
votes
0 answers
Restsharp, responce as chunked with diffent JSON documents
Hello I have made a request to a http server as an event service. This server sends events as chunked data. Because there are diffrent events, I got diffrent JSON documents.
Question 1. How to read this data everytime I get a new pice of data, not…
0
votes
1 answer
xhttpRequest Get Range of Chunked Response?
I am using Javascript to request a large text file (>16 MB) from a URL and update it with periodic new additions to the text file
I have a GET request to a URL that returns a response with the header "Transfer-Encoding: chunked" and I am wondering…

Daniel
- 1
- 2