Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
0answers
888 views

HttpURLConnection buffering rather than streaming, despite setting chunked streaming mode? [closed]

I am using HttpURLConnection to write files, some of which are quite large, to a server. final HttpURLConnection conn = (HttpURLConnection) url.openConnection(); A while back I had issues writing ...
3
votes
1answer
316 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
1answer
984 views

Have any Android developers had success receiving chunked transfer protocol from a web service?

I have struggled with several class implementations to retrieve chunked data without success. Following is a simplified code module that has the problem. After surfing around the web, it appears ...
1
vote
1answer
100 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
1answer
312 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
490 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
1answer
474 views

How can I implement chunked http requests on iPhone?

Currently I'm trying to use a NSMutableURLRequest, setting the HTTPBody to a custom written NSInputStream of mine that provides this chunks. This would be fine if it were not for the fact that ...
0
votes
0answers
10 views

Sending mp3 over http chunked encoding in vb.net

Hi I'm trying to send mp3 data over http with chucked encoding. The idea is that the mp3 will later be a live stream (of mp3 pieces) so I don't know what the content length will be. Here is my code ...
0
votes
0answers
67 views

HTTP Live Streaming of static file to iOS device

I'm trying to understand the "chunked" aspect of HTTP Live Streaming a static video file to an iOS device. Where does the chunking of the video file happen? Edit: from reading HTTP LIve Streaming and ...
0
votes
1answer
20 views

Can I split a gziped content-encoding across multiple HTTP chunks?

Can I split a gziped content-encoding across multiple chunks? Are there any known implementations that fail with this?
0
votes
1answer
348 views

Apache 2: How to change http chunk size?

I believe Apache 2.x defaults to a http/1.1 chunk size of 8192 bytes? I don't see a directive to change it - it there anything undocumented? Also, is it possible to force a file to be chunked? ...
0
votes
1answer
116 views

Is this response properly encoded?

I am receiving the following headers in response to a web request: HTTP/1.1 200 OK ... ... Pragma: no-cache Content-Type: binary/octet-stream Transfer-Encoding: chunked ... Ÿ’âýÝ©ËIJ‹sç ÿ- // in ...