Tagged Questions

Chunked transfer encoding is a data transfer mechanism in version 1.1 of the Hypertext Transfer Protocol (HTTP) in which a web server serves content in a series of chunks.

learn more… | top users | synonyms

5
votes
1answer
3k views

How do I disable chunked transfer-encoding when using compressed dynamic content?

I want to disable chunked transfer encoding on my web server, in order to avoid this bug: http://support.microsoft.com/kb/871205 . Unfortunately, I need to support IE6 on Win2k, so they cannot install ...
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 ...
3
votes
4answers
1k views

HTTP Transfer-Encoding and requests

the HTTP specification states that the Transfer-Encoding header is allowed for requests - but what error code should a server respond if it doesn't understand that given Transfer-Encoding. As far as ...
2
votes
1answer
326 views

Chunked Transfer Encoding problem with Apache Abdera

I'm using Apache Abdera to POST atom multipart data to my server, and am having some odd problems that I can't pin down. It looks like an issue with chunked transfer encoding, but I'm insufficiently ...
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
965 views

.NET WCF Can't Decode “Chunked” response

I am calling an axis web service from WCF. The request works just fine but I get back null values. Using Fiddler I was able to determine that the response is coming base as Transfer-Encoding: ...
2
votes
2answers
511 views

What is optimal response size for chuncked transfer in ASP.NET?

I am creating a reverse proxy and I am trying to find the optimal buffer for a response size for a chuncked transfer-encoding. Currently I have it set at 4 kb. Is this number OK, or is there a ...
1
vote
1answer
143 views

Decoding HTTP chunked + gzipped content

How would one decode a server response that is 1) transfer-encode: chunked 2) content-type: gzip I need to do this manually and can't just use curl to send the request. I need to decode from the ...
1
vote
0answers
58 views

Python CGI: need to printout often to prevent server from dying [closed]

Possible Duplicate: python print function in real time I am developing a python cgi web application, which retrieves large information(millions of lines) from the database. For that i will ...
1
vote
1answer
570 views

why is chunked transfer encoding not being respected by Firefox?

I'm streaming a large document through a Spring MVC controller running on Apache Tomcat/6.0.18 because its large, and will (eventually) be dynamically generated, I decided to use chunked ...
1
vote
1answer
138 views

Possible to send HTTP 1.1 Footers from PHP using Transfer-Encoding: chunked?

Having tried and failed to get a manual implementation of chunked Transfer-Encoding with gzipped Content-Encoding working in PHP, I'm now back to using mod_deflate in Apache, which does a nice job. ...
1
vote
1answer
323 views

How to enable transfer-encoding:chunked in Java on AppEngine

I have done a number of google searches on this topic, but haven't been able to find anything (other than confirmation that AppEngine ignores calls to 'resp.setHeader("transfer-encoding", xxxx)'. My ...
1
vote
0answers
228 views

content-length header in response not present despite commenting transfer-encoding in axis2.xml

I have an axis2 service running on TOMCAT 6.0.18 with axis2 1.3 version. I disabled chunking by commenting the transfer-encoding element and changed the HTTP to 1.0 as shown below: ...
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 ...
0
votes
0answers
16 views

Is chunked transfer encoding always the best option for a web service?

Using HTTP 1.1, does specifying the Content-Length header ever achieve anything for a web service that isn't achieved by using transfer encoding? It appears that the Content-Length header only exists ...
0
votes
1answer
41 views

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

Downloading a file with transfer-encoding header on android

I have a strange problem that I would really some insight on. I have some code to download various files. Some files return the "transfer-encoding" header with a value of "chunked" and I'm pretty sure ...
0
votes
1answer
440 views

Send data to client using Chunked Transfer Encoding

I’m building a Streaming Video Server, now I want to send data to client using Chunked Transfer Encoding. This is my code : string statusLine = "HTTP/1.1 200 OK\r\n"; string server = "Server: ...
0
votes
2answers
266 views

What is the maximum chunk size in HTTP response with Transfer-Encoding chunked?

The w3.org (RFC2616) seems not to define a maximum size for chunks. But without a maximum chunk-size there is no space for the chunk-extension. There must be a maximum chunk-size, else I can't ignore ...
0
votes
1answer
140 views

Multipart posts upload images - setting transfer encoding, setting headers for each part

Using java, I need to do a multipart form request to Constant Contacts api to upload an image. I need to create one part with XML per their specifications to describe the file and the second part ...
0
votes
5answers
379 views

Safely insert line breaks into HTML

I have an application allows a user to copy paste html into a form. This html gets sent as an email, and the email server will not allow more than 1000 characters per line. So, I'd like to insert line ...
0
votes
2answers
710 views

Chunked responses in libevent2

I am trying to do a chunked response (of large files) in libevent this way:: evhttp_send_reply_start(request, HTTP_OK, "OK"); int fd = open("filename", O_RDONLY); size_t fileSize = ...
0
votes
1answer
222 views

large data transfer between mobile app and server

what's the server setup used for data communication between a mobile app(eg. android) and server, would apache http server with php be sufficient? assuming you need to transfer 1gb of binary or text ...
0
votes
2answers
575 views

What is the encoding of an .eml file from IIS's SMTP server?

I need to write a program that read the .eml files from IIS's mail drop box, but I can't find a definitive source that tells me the encoding of the .eml files. Is there a specification somewhere that ...
0
votes
2answers
3k views

Problem turning HTTP Chunking off in AXIS2

I have a client sending me requests without HTTP chunking (they use content-length). When my server responds, chunking is enabled, and the client can't handle this - even though they should be able ...