Tagged Questions
4
votes
2answers
3k views
Content-Length header versus chunked encoding
I'm trying to weigh the pros and cons of setting the Content-Length HTTP header versus using chunked encoding to return [possibly] large files from my server. One or the other is needed to be ...
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 ...
2
votes
2answers
572 views
Content-Length header not returned from Pylons response
I'm still struggling to Stream a file to the HTTP response in Pylons. In addition to the original problem, I'm finding that I cannot return the Content-Length header, so that for large files the ...
1
vote
0answers
23 views
HTTP: pictures not fully received. how to avoid that, i.e. force browser to try again?
I have written a small picture script which shows a directory listing with thumbnails and also previews of the pictures.
Directory listing example
Image preview example
Source code
In some cases, ...
1
vote
2answers
355 views
How do I get the content length of a Django response object?
In Django, I try to logging the request and response content length, which exactly the same as what Django server prints to stderr.
[05/Apr/2011 22:59:08] "GET /pages/ HTTP/1.1" 200 332161
...
1
vote
1answer
212 views
what is relation between content-length and byte ranges in HTTP/1.1?
I am not grasping the idea behind content-length and byte ranges as specified by HTTP 1.1
Is there are connection between the two of some sort? If a client requests in terms of byte ranges, say 0-100 ...
1
vote
2answers
253 views
Is it OK to send an HTTP response with file attachment without specifying the Content-Length?
Meaning will it work fine? I have a situation where I am attaching files via HTTP attachment by attaching the URI of the file and it is on a different server so I don't have access to the length of ...
1
vote
2answers
646 views
Site incredibly slow for firefox, instant on every other browser: KeepAlive issue?
I have a site where a page takes 10 seconds to load with firefox, and a further 10 seconds to load the images. It's a php page running on apache. The Images are just static images.
It runs ...
0
votes
2answers
64 views
How to configure `Content-Length' header in HTTP protocol
I don't clear about how to count `Content-Length' header in HTTP.
Take an example,
HEADER
...
Content-Type: text/html
(blank line `\r\n')
<html></html>
(blank line `\r\n')
This is a ...
0
votes
3answers
62 views
Is Content-length the only way to know when the HTTP message is completely received?
I was generally considering writing a protocol for my own purposes over TCP and hit the problem of determining the end of the message.
Deriving from HTTP, I could see that the message length is ...
0
votes
1answer
200 views
HTTP Content-Length header has 1 byte too many
I'm writing a (PHP) script that serves files to the client. Among others, the Content-Length header is sent, only it has one byte too many. I discovered this when I put the content length in a ...
0
votes
1answer
466 views
HTTP Chunked data size and content length
How to determine the content-data length if the header is not sent and instead your receive Transfer-Encoding: chunked header..
I heard there is a way to do it, but i failed to find it!
Best,
Moe
0
votes
2answers
440 views
How to check the field 'Content-Length ' of an HTTP request using Ruby on Rails 3?
I am using Ruby on Rails 3 and in a my view file I have this code:
<%= form_for (@account, ...) do |f| %>
<%= f.file_field :file %>
...
<%= f.submit "Upload" %>
<% end ...