Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
4k views

How to make PHP generate Chunked response

I googled for this problem but there is no answer for it. I want my PHP script to generate HTTP response in chunked( http://en.wikipedia.org/wiki/Chunked_transfer_encoding). How to do it? Update: I ...
6
votes
1answer
87 views

c#: Saving JPGs in parts

I am currently working on a c# open source photo mosaic software (Sourceforge Link). This software stitches together large amounts of small photos (tiles) into one big image. Since the final image ...
6
votes
1answer
167 views

Aborting a HTTP/1.1 chunk encoded response

Is there a standard way to handle response failure for chunked responses? I have poured through the RFCs and don't see a standard way of handling this. My understanding of chunked responses is that ...
5
votes
0answers
75 views

Groovy HTTPBuilder : Getting the entity content from a GZIPed Chunked response

I need to send a POST request to a web server and be able to read the response sent by said server. I tried using the HTTPBuilder lib with this code : def http = new HTTPBuilder('http://myServer/') ...
4
votes
1answer
253 views

App Engine: Is it possible to disable Transfer-Encoding: Chunked for large static files?

As a follow-up to this question, is it possible to disable the "Transfer-Encoding: Chunked" method for large static files, therefore forcing a Content-Length to be returned instead? My site serves a ...
4
votes
1answer
2k views

Tomcat gzip while chunked issue

I'm expiriencing some problem with one of my data source services. As it says in HTTP response headers it's running on Apache-Coyote/1.1. Server gives responses with Transfer-Encoding: chunked, here ...
4
votes
2answers
644 views

HTTP Chunked transfer encoding: How do you send “\r\n”?

Say the body I'm trying to send via chunked encoding includes "\r\n", how do I avoid that being interpreted as the chunk delimeter? e.g. "All your base are\r\n belong to us" ...
4
votes
5answers
4k views

Why doesn't IIS support chunked transfer encoding?

I am making an HTTP connection to an IIS web server and sending a POST request with the data encoded using Transfer-Encoding: chunked. When I do this, IIS simply closes the connection, with no error ...
3
votes
1answer
164 views

IIS7 refuses chunked-encoded file upload

I have a Windows/Apache2/PHP app that receives file using chunked encoding. The reason is that the file uploaded is dynamic and its length is not known before transfer. This has always worked fine out ...
3
votes
1answer
275 views

Terrible Apache Bench results on Custom CMS

Please note: This is not a complain about a shoddy CMS. Just toying with Apache Bench and got terrible results with our custom CMS, more exactly i got: Requests per second: 0.37 [#/sec] (mean) ...
3
votes
2answers
564 views

gzip compression of chunked encoding response?

I'm trying to get my webserver to correctly gzip an http response that is chunk encoding. my understanding of the non-gzip response is that it looks like this: <the response headers> and ...
3
votes
0answers
308 views

Handling 'chunked' encoded response with HTTPBuilder/Groovy

I'm new to using groovy and have started to use it to test some REST services. I'm having an issue parsing my XML response from our service due to 'Content not allowed in prolog.' After awhile ...
3
votes
2answers
691 views

(Chunked) HTTP binary message body and CRLFs

I cannot seem to get a definitive answer on the following question (Googling mostly and reading HTTP/1.1 specs): When 'chunked' transfer encoding is used, why does the server need to write out BOTH ...
3
votes
3answers
1k views

Get Size of HTTP Response in Java

I would like to know how much data was sent in response to a certain http-request. What I currently do is this: HttpURLConnection con = (HttpURLConnection) feedurl.openConnection(); //check the ...
3
votes
2answers
1k views

Python HTTP server that supports chunked encoding?

I'm looking for a well-supported multithreaded Python HTTP server that supports chunked encoding replies. (I.e. "Transfer-Encoding: chunked" on responses). What's the best HTTP server base to start ...
3
votes
2answers
3k views

Chunked Encoding Implementation in .NET (or at least pseudo code)

I wrote a raw TCP client for HTTP/HTTPS requests, however I'm having problems with chunked encoding responses. HTTP/1.1 is requirement therefore I should support it. Raw TCP is a business requirement ...
3
votes
2answers
2k views

Reading Body on chunked transfer encoded http requests in ASP.NET

A J2ME client is sending HTTP POST requests with chunked transfer encoding. When ASP.NET (in both IIS6 and WebDev.exe.server) tries to read the request it sets the Content-Length to 0. I guess this ...
2
votes
2answers
154 views

Concatenating 'audio/x-wav' buffer and serving with 'Transfer-Encoding': 'chunked'

This question is a followup to a previous question, that was resolved thanks to @thejh. I'm trying to convert text to audio and serve the data to the client as 'chunked' data. So far my headers look ...
2
votes
2answers
409 views

Download chunked resource with wget?

There's a sample ASP.NET project with this controller: using System; using System.Collections.Generic; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class ...
2
votes
5answers
789 views

HTTP Data chunks over multiple packets?

What is the correct way for a HTTP server to send data over multiple packets? For example I want to transfer a file, the first packet I send is: HTTP/1.1 200 OK Content-type: ...
2
votes
2answers
2k views

Using both chunked transfer encoding and gzip

I recently started using gzip on my site and it worked like a charm on all browsers except Opera which gives an error saying it can not decompress the content due to damaged data. From what I can ...
2
votes
3answers
638 views

PHP File Serving Script: Unreliable Downloads?

This post started as a question on ServerFault ( http://serverfault.com/questions/131156/user-receiving-partial-downloads ) but I determined that our php script was the culprit. So I'm issuing an ...
2
votes
3answers
5k views

How can I set Transfer-Encoding to chunked, explicitly or implicitly, in an ASP.NET response?

Can I simply set the Transfer-Encoding header? Will calling Response.Flush() at some point cause this to occur implicitly? EDIT No, I Cannot call ...
2
votes
1answer
215 views

How to stop streamed Comet communications being buffered in the browser

I'm trying to push packets of data from my HTTP server to a browser, using a Comet "forever iframe" and feeding it script tags from the server using the Transfer-Encoding: chunked header. What I'm ...
2
votes
3answers
2k views

NSURLConnection chunked encoding upload - How?

I need to create a way to upload a bytestream using chunked encoding. I have a byte array that contains an audio file, I would like to send that file to a server using a chunked stream. I've been ...
1
vote
1answer
51 views

HTTP Content-Length and Chunked Transfer-Encoding. Is there a 2GB Limit?

Is a HTTP Content-Length over 2GB or 4GB supported by modern webservers? How about the chunks in HTTP Chunked Transfer Encoding? Can an individual HTTP chunk exceed 2GB in length? I need to know to ...
1
vote
2answers
124 views

How to make a chunked request via nginx

It seems that nginx does not support chunked requests well. But I'm trying to get a more definitive (and current) answer. I have a client making a SOAP request to a server from a Java client which ...
1
vote
1answer
72 views

libcurl process chunked response

recently i am building a program grabbing web pages from internet with libcurl, i found that when the response using chunked encoding, libcurl can't get the chunk header.then i looked into libcurl ...
1
vote
1answer
164 views

Disable chunking per request

I have a web service backed by a Java Servlet. The service is used by an older version of Flash. We discovered through some pain that in this version of Flash, URLLoader won't work with chunked ...
1
vote
2answers
305 views

Python urllib2 decode chunked encoding

I have the following code to open and read URLs: html_data = urllib2.urlopen(req).read() and I believe this is the most standard way to read data from HTTP. However, when the response have chunked ...
1
vote
2answers
208 views

Read chunked through socket

For my app I send a http-get request through a socket. Then de website sends a respone, but it is using chunked encoding. Is there a way to download the full data? Maybe I use the wrong way the ...
1
vote
2answers
108 views

libcurl: Detect chunk boundaries of chunk-encoded responses

I am using libcurl, currently the easy api. I am making a request to a web server that responds with HTTP Chunked Encoding. I would like to know if there is a way to know when a chunk from the server ...
1
vote
1answer
680 views

how to handle / read the response with “Transfer-Encoding:chunked”?

May i know how to handle / read the response with "Transfer-Encoding:chunked"? Currently im using common-httpclient.3.1 My current coding as followings (can handle response with content-length in ...
1
vote
1answer
293 views

Java: How to download chunked content correctly?

I have to download file which HTTP response is "Transfer-Encoding: Chunked", because of what I can't to «getContentLength» to allocate new bytes buffer for DataInputStream. Can you advice me how to do ...
1
vote
1answer
96 views

Error code redirect when returning a response with chunked encoding?

My web application uses chunked encoding. I'd like to have the behavior where if any chunk generates an error, I can properly set the error code and redirect to an error page using that. Right now it ...
1
vote
1answer
432 views

HTTP Chunked Encoding. Need an example of 'Trailer' mentioned in SPEC

I am writing an HTTP parser for a transparent proxy. What is stumping me is the Trailer: mentioned in the specs for Transfer-Encoding: chunked. What does it look like? Normally, a HTTP chunked ends ...
1
vote
2answers
332 views

Get chunked-encoded url

I need to get a webpage (by url) with chunked-encoding in C#. There are some topics (on SO too, this Chunked Encoding Implementation in .NET (or at least pseudo code) for ex) about it, but I can't ...
1
vote
1answer
95 views

Is there a way to access the Trailer headers in a chunked-enconded response in .Net 4.0?

Using HttpWebRequest/Response, and the Trailer headers in the chunked-encoded response are being thrown away (I've actually stepped through the .Net 4.0 reference source to see where it calls ...
1
vote
2answers
242 views

Can you explain chunked encoding?

header("Transfer-Encoding: chunked"); echo"32 12345678901234567890123456789012345678901234567890 0 "; flush();exit; When requested with Firefox, 32 and 0 are missing. Why?
1
vote
2answers
2k views

Chunked http decoding in java?

I am decoding http packets. And I faced a problem that chunk problem. When I get a http packet it has a header and body. When transefer-encoding is chunked I don't know what to do ? Is there a ...
1
vote
1answer
235 views

How to hide “page loading”/“transferring data” indicators and spinners caused by loading a (hidden) iframe

Is there any way to suppress the spinners and "transferring data" indicators that browsers show when a web page is loading? I'm loading a document into a hidden iframe that will take a long time ...
1
vote
1answer
727 views

CURL vs fsockopen chunking

This may seem kind of weird.. but I need to evaluate/parse chunks being sent over HTTP with PHP. It's of note to say that the HTTP stream may never end. Is there any way I can parse chunks as I get ...
1
vote
2answers
1k views

Enabling nginx Chunked Transfer Encoding

It looks like nginx 0.8.35 may support chunked transfer encoding: Changes with nginx 0.8.35 01 Apr 2010 *) Change: now the charset filter runs before the ...
1
vote
1answer
78 views

Can SVG render partially if gzipped and chunk-transferred?

I have some large, dynamically generated SVGs that are being served over a relatively slow internet connection. I'm trying to optimize them to be viewable as fast as possible. If I set the server to ...
1
vote
0answers
220 views

Apache deflate with chucked encoding

I'm expiriencing some problem with one of my data source services. As it says in HTTP response headers it's running on Apache-Coyote/1.1. Server gives responses with Transfer-Encoding: chunked, here ...
1
vote
1answer
892 views

Nginx proxy http PUT chunked to apache

Nginx doesn't support chunked requests so i'm tryping to proxy my PUT request to apache, but it seems nginx blocks and sends 411 error even when proxying. Any way I can get nginx to send those ...
1
vote
2answers
1k views

Enable Chunked Transfer Encoding in ASP.NET

I have an ASP.NET 3.5 website residing on IIS7. I am using dynamic compression and wanted to see if I can enable chunked encoding. Is there some setting on IIS or web config that enables it?
1
vote
1answer
1k views

Grails multiple requests when using chunked transfer encoding

I am downloading a file through Grails, and am recording the fact that this file has been downloaded by this user, with code like: class MyController { private void recordTrackDownload() { ...
1
vote
1answer
207 views

HTTP chunks: All chunks sent consecutively and uninterrupted?

Can I be sure that a chunked HTTP response will be sent uninterrupted by anything else? I need to differentiate responses (and requests) and this isn't a simple case of reading content length, seeing ...
1
vote
1answer
2k views

Anyone have sample code for doing a “chunked” HTTP streaming download of one web directly to a upload to a separate web server?

Background - I'm trying to stream an existing webpage to a separate web application, using HttpWebRequest/HttpWebResponse in C#. One issue I'm striking is that I'm trying to set the file upload ...

1 2