Chunked encoding involves transferring the body of a message as a series of chunks, each with its own chunk size header.

learn more… | top users | synonyms

0
votes
1answer
15 views

python requests chunked response

I am using the Python Requests package to write a simple rest client. Here is my code - r = requests.get(url, auth=(user, passwd), stream=True, verify=False) print('headers: ') ...
1
vote
2answers
48 views

How do I send an HTTP response without Transfer Encoding: chunked?

I have a Java Servlet that responds to the Twilio API. It appears that Twilio does not support the chunked transfer that my responses are using. How can I avoid using Transfer-Encoding: chunked? Here ...
-1
votes
0answers
28 views

How to Extract Chunked data when using HttpURLConnection in android

I am using HttpURLConnection to get data when i am making a REST API call. HttpURLConnection connection = (HttpURLConnection) (new URL("http://" + account + ...
0
votes
2answers
24 views

How to control chunks in jetty?

I'm writing HTTP webservice that may take quite long to produce results. I use embedded Jetty 8.1.5 and JAX-RS (Apache CXF) I decided to go with some kind of control protocol: when new request comes, ...
0
votes
1answer
61 views

how to get the size of chunk in http response using java if transfer encoding is chunked

How to know the size of the chunk of HTTP response if transfer encoding is chunked.I am unable to get the logic. Please help me.And provide me some sample java code to get the size of chunk.I read in ...
0
votes
1answer
38 views

Keep NSURLConnection open + Chunked Encoding Upload

I want keep a NSURLConnection open, and upload data via chunked transfer encoding. I have a buffer that reads in data, and as soon as I read in the data, I want to upload this data. I won't know how ...
0
votes
1answer
28 views

Why does my successful streaming response in Webmachine have the status code 500?

The following code is the full source of a webmachine resource. The expected behaviour is that the streaming response should be a 200, and should be a string of specified length, entirely composed of ...
0
votes
0answers
38 views

How do I force apache to deliver a file in chunked encoded format

I am verifying if my application handles file content delivered through chunked-encoding mode. I am not sure what change to make to the httpd.conf file to force chunked encoding through Apache. Is it ...
0
votes
3answers
100 views

Python web framework capable of chunked transfer encoding? [closed]

I'm developing a web app in Python where one of the use-cases is for a user to: Upload a large file over HTTP POST and Simultaneously download and display a response, which is a processed version of ...
1
vote
1answer
51 views

PHP Audio transfer with chunked encoding

I need a help, I am working on a streaming audio system, and I have a problem with chunked transfer encoding, actually I don't know how to make it workable on the IOS, Android etc. Is there any ...
10
votes
2answers
296 views

Restlet streaming data

I have this task that I'm undertaking where I would be reading data from a device and make it available over a web service. The data is read 4 times a second. I want the web clients to be have an open ...
0
votes
1answer
220 views

Changing Netty 4 HTTP File Server example to use ChunkedStream instead of ChunkedFile

I'm trying to wrap my head around Netty 4 way of implementing a HTTP Server that serve HttpResponses bodies using chunked transfer-encoding when total data size is unknown. As a starting point, I ...
0
votes
0answers
59 views

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 ...
0
votes
3answers
140 views

Django return http early flush (chunked response)

I have an algorithm which waits for almost 5 seconds to generate response and I want to send an ack (http 200) to user as soon as he sends request to tell him that his request has been received and ...
0
votes
1answer
56 views

Content-Range for resuming a file of unknown length

I create a ZIP archive on-the-fly of unknown length from existing material (using Node), which is already compressed. In the ZIP archive, files just get stored; the ZIP is only used to have a single ...
0
votes
0answers
78 views

Apache mod_deflate and chunked transfer

my website is running on Apache 2.2.24 + PHP 5.3.22. Apache is installed with mod_deflate and my .htaccess looks like this: <ifmodule mod_deflate.c> AddOutputFilterByType DEFLATE text/text ...
0
votes
1answer
379 views

HTTP chunked transfer

I'm writing a client app that connects to a service using the chunked transfer encoding. The service occasionally disconnects and I was told it was because we're sending a zero chunk in the request, ...
0
votes
0answers
31 views

Http chunked transaction followed by another chunk, is it according to the RFC?

I am trying to look at http transactions, I have come to find a transaction that looks like: HttpHeader request & response ( Transfer-Encoding: chunked) and then: datadatadata............. ...
0
votes
2answers
176 views

Why is chunked transfer encoding not allowed to web applications running in CloudBees run@cloud?

I'm using an application that sends SOAP requests (HTTP POST) to my application running in CloudBees PaaS (run@cloud). The SOAP sender application gets the following error from the server: Transport ...
0
votes
1answer
66 views

I am trying to send an HTML part as chunks in an HTTP response using a perl script but I am getting compilation errors

Following is a portion of the script I am using to send HTML page as chunked response. However upon running the script throws compilation errors like : Number found where operator expected at ...
1
vote
1answer
511 views

Using chunked transfer encoding to send data obtained by rolling Curl

I am using rolling curl to get data from 40 other websites. As soon as the results are available for a website, they are being sent out immediately by using chunks. To implement that , I added ...
1
vote
1answer
260 views

Decompress a gzip-compressed HTTP-Response (chunked encoding)

like descriped in the title, I want to decompress a HTTP-Resonse. Here is what I do: receive the http-response check the content-encoding (lets assume its gzip) exctract the content from the ...
6
votes
2answers
99 views

Losing 6 bytes but only if socket goes quiet for 60 seconds?

I've been running two socket clients side-by-side, collecting http streaming data (not Twitter, but similar kind of thing). The data comes through in chunked encoding. One of the clients is curl (on ...
0
votes
1answer
74 views

Reading one chunk at a time in Django

Our setup is Nginx, Gunicorn and Django. I'm trying to add functionality that proxies Chunked Transfer Encoding as an HTTP post request http://en.wikipedia.org/wiki/Chunked_transfer_encoding But even ...
1
vote
0answers
145 views

Reading a chunked HTTP JSON response behind basic authentication using ASP.NET C#

With the huge number of ASP.net namespaces, classes and methods available I wonder if anyone can offer any assistance in narrowing down the ones I should pay particular attention to in order to: Read ...
1
vote
0answers
226 views

Do any browsers support trailers sent in chunked encoding responses?

HTTP/1.1 specifies that a response sent as Transfer-Encoding: chunked can include optional trailers (ie. what would normally be sent as headers, but for whatever reason can't be calculated before the ...
1
vote
1answer
192 views

Does AppEngine BlobStore support Chunked Transfer Encoding for uploads (Status 411: Length required)?

I'm having a really hard time finding documentation on a very basic question about AppEngine: Does the BlobStore support Chunked Transfer Encoding for uploads? I'm using an HttpURLConnection object ...
0
votes
0answers
32 views

Where can I find a software implementation which can accept audio input via RTP and output chunked HTTP

Where can I find a software implementation which can accept audio input via RTP and output chunked HTTP? I am looking for any out of the box implementations or techniques that you would know of.
0
votes
1answer
121 views

Chunked encoding issue in web.py

I have my web.py application running. It receives POST request from outside. The request header contains 'transfer-encoding: chunked'. When i try to read the data with 'web.data()' the process starts ...
1
vote
1answer
228 views

CFNetwork reads http header Transfer-Encoding Identity but wireshark shows chunked

I am using the CFNetwork to read through the headers and I am trying to read what type of "Transfer-Encoding" my request is. It should be "chunked" Wireshark shows the correct request of ...
1
vote
0answers
99 views

PHP mail with chunked CSV attachment causing double newline error

I try to send a CSV file using PHP mail. This is the version that causes double newline ERROR (gotten from server error logs): $content = base64_encode($content); $uid = md5(uniqid(time())); $header ...
3
votes
1answer
235 views

Python: suggestions to improve a chunk-by-chunk code to read several millions of points

I wrote a code to read *.las file in Python. *las file are special ascii file where each line is x,y,z value of points. My function read N. number of points and check if they are inside a polygon ...
0
votes
1answer
191 views

Forcing chunked encoding in Tomcat response

I am migrating an application for a customer to Tomcat 6. During testing we discovered that some of their clients expect the response to always be chunked, i.e. Transfer-encoding: chunked. However, ...
2
votes
2answers
1k views

Handling HTTP chunked encoding with django

I have a problem handeling http chunked transfer encoding. I'm using: apache. mod_wsgi plugin. django. django, is only capable of handling reqular http request with content-length header ...
0
votes
1answer
659 views

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 ...
0
votes
1answer
54 views

Server can't determine the length of this raw HTTP message

I'm attempting to stream chunked POST data using sockets in PHP to a local server for testing. This works fine if I don't chunk the request entity body and provide a Content-Length header. However, ...
3
votes
1answer
285 views

How to generate Chunked response with a Trailer in Apache/PHP?

I know I can generate chunked response in PHP simply by introducing a sleep() in the output. But is it possible to also generate a Trailer HTTP section in PHP? If not, is it possible in general in ...
2
votes
2answers
663 views

C parsing HTTP Chunked transfer encoding response

I am developing a client that needs to parse Chunked-type HTTP transfers. I've beat my head against the wall trying to figure out the error with the following, and would appreciate it if someone might ...
0
votes
0answers
83 views

IEMobile/9.0 undefines .responseText during readyState == 3: is any streaming possible?

I am trying to build a service that uses a variation of a long poll to send results back to a Windows Phone 7 "Mango" device where initial results come back quickly and as the server calculates better ...
1
vote
0answers
513 views

IIS 7.5 Compression & Chunked Transfer Issue

I had to render a json feed. Since the size of the feed is around 10 MB, I decided to enable compression in ASPNET. I enabled dynamic compression for json mime type. Compression works well and reduced ...
1
vote
1answer
244 views

ASIHttprequest get progress for chunked transfer encoding?

The ASIProgressDelegate setProgress method always get 1 when downlonding chunked encoding? How to get the progress of downlonding chunked encoding? Thanx!
2
votes
2answers
295 views

Perl Split Binary Data into Chunks with Unpack

I'm using Transfer-Encoding: chunked to write an HTTP response. The response is split into pieces via the following: my $template = "a$buffer_size" x int(length($response)/$buffer_size) . 'a*'; ...
1
vote
2answers
315 views

If a HTTP/1.0 client requests Connection: keep-alive, will it understand chunked encoding?

If my HTTP server gets an HTTP/1.0 request with the "Connection: keep-alive" header, is it a fair bet that the client will understand "Transfer-Encoding: chunked"? Essentially, I'm trying to decide ...
2
votes
0answers
969 views

HttpWebRequest, Redirects, chunked encoding error on live site, but works i IIS Express locally

I have some code that creates a HTTP POST WebRequest with C# and posts some data to a https site. That site then redirects to a new URL and returns some data. This works just fine on my local machine ...
2
votes
1answer
322 views

How to View source page using Wireshark?

Is there a possibility that a website's source page can be captured and viewed using Wireshark ? I do not need the header packets, what I am looking for is the full source page of any site that I open ...
5
votes
1answer
797 views

Can HTTP multipart and chunking coexist?

I'm using apache HttpClient to post several files to server. Here's the code: public static HttpResponse stringResponsePost(String urlString, String content, byte[] image, HttpContext ...
0
votes
1answer
186 views

Read chunked HTTP in .Net

I'm trying to write a VB.net client that reads HTTP chunked data. The chunks contain additional information that I need to use. I've already figured out that I can't use the HTTPWebResponse, since it ...
0
votes
1answer
579 views

WinInet - can't remove Content-Length from headers to manually chunk an upload

MSDN states that WinInet does not support chunked upload ("Client code must perform the chunking."). To me that meant I could manually chunk the transfer. My intention was to add "Transfer-Encoding: ...
6
votes
2answers
1k views

C# using WebClient to download chunked encoded content

I wrote client application that suppose to download a file from web server, very simple: using (WebClient webClient = new WebClient()) { ...
0
votes
1answer
94 views

Is there a max recommended size on bundling/combining js files due to chunking or packet loss?

So we all have heard that its good to bundle your javascript and css into as few files as possible. Of course it is, but it seems to me that the story is too simple. See if my logic makes sense here. ...

1 2 3