Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
401 views

How to get InputStream of an https, chunked Push Servlet?

I spend three days in find out how I can connect to an https chunked push servlet and get an inputstream. The connection with HttpsURLConnection works and also with HttpClient but in every programmed ...
3
votes
1answer
918 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 ...
3
votes
3answers
542 views

Any way to chunk gzip with Apache and PHP

I have a web application on a site that takes a while (~10 seconds) to complete a portion of the page near the bottom - it has been as optimized as it can be, and caching is not an option. We have ...
2
votes
1answer
53 views

How to handle plupload's chunked uploads on the server-side

When I use plupload to chunk files (setting option chunk_size), I get a separate PHP request for each chunk. Looking at $_FILES variable, each chunk is of type "application/octet-stream". Is there ...
1
vote
1answer
145 views

Parsing responses of content-type chunked in python

I'm trying to read and parse a request of content-type: chunked in python. Here is what I see when I load the url in a browser and look at the source: <!-- ...
1
vote
1answer
177 views

How to configure HTTPServer to use content length and not transfer encoding: chunked?

I'm using java's HTTP Server object with web service implemeted by WebServiceProvider. I see that no matter of the client request, the answer is chunked and i need it to be with content length. so i'm ...
1
vote
1answer
178 views

How to write javascript in client side to receive and parse `chunked` response in time?

I'm using play framework, to generate chunked response. The code is: class Test extends Controller { public static void chunk() throws InterruptedException { for (int i = 0; i < 10; ...
1
vote
1answer
294 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
575 views

Chunked transfer encoding … example HTML document

I would like to know how to implement a chunked HTML document. How it looks? Can anyone post an example of an chunked HTML ducument, because I can't understand how to prepare my HTML document for ...
1
vote
1answer
527 views

Chunked encoding and content-length header

Is it possible to set the content-length header and also use chunked transfer encoding? and does doing so solve the problem of not knowing the length of the response at the client side when using ...
1
vote
0answers
609 views

How to create Large resumable download from a secured location .NET

I need to preface I'm not a .NET coder at all, but to get partial functionality, I modified a technet chunkedfilefetch.aspx script that uses chunked Data Reading and writing Streamed method of doing ...
0
votes
0answers
14 views

How to make Apache mod_deflate and Transfer-encoding : Chunked work together?

I am trying to use the bigpipe concept on our website. That means trying to send the response in chunks instead of sending it as a whole so that user feels that page is fast. I am successful in doing ...
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
0answers
24 views

How to view value of chunks of chunked HTTP response

Is it possible to view value of chunks of chunked HTTP response?
0
votes
0answers
39 views

Strategies for transferring large data sets over http

I'm sorry if this is too long. I've reduced it as much as I could while trying to provide a complete scenario of the problem at once. The Problem: I have a situation in which users will request a ...
0
votes
1answer
233 views

Java REST Chunked Encoding

I'm trying to read some information with a REST-Service that uses chunk-encoding. String encodedURL = URLEncoder.encode(url, "UTF-8"); WebClient client = ...
0
votes
1answer
201 views

Rails send_file not sending data when called through a web service

I am in a strange situation where send_file is unable to send file correctly. Here is situation: Rail version: 3.0.10 and 3.1.0 [two different branches for testing] Ruby: 1.9.2 on RVM Webserver: ...
0
votes
2answers
264 views

Receiving Chunked HTTP Data With Winsock

I'm having trouble reading in some chunked HTTP response data using winsock. I send a request fine and get the following back: HTTP/1.1 200 OK Server: LMAX/1.0 Content-Type: text/xml; charset=utf-8 ...
0
votes
1answer
253 views

httpClient, problem to do a POST of a Multipart in Chunked mode…

Well I am wondering how I can achieve to post a multipart in chunked mode. I have 3 parts, and the files which can be big so must be sent in chunks. Here what I do : MultipartEntity ...
0
votes
1answer
443 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
1answer
137 views

Reciving chunked data endlessly

As you might know for sending chunked file in HTTP header, there is no content length, so the program must wait for 0 to understand that file ended. --sample http header POST /some/path HTTP/1.1 ...
0
votes
3answers
236 views

How to download a page with “Transfer-Encoding:chunked” prior to PHP 5.2

Trying to retrieve a page from the XML language. However, retrieval is unreliable because it is a chunked transfer encoding. How do I download this page correctly to give me further editing? I can ...
0
votes
1answer
153 views

Getting total file length when using chunked http transfers

I've written a program in Java to use chunking to download large files over http. Everything is working fine but I'd like to add a progress bar which I can't do unless I get the total length of the ...
0
votes
2answers
216 views

HttpPost returns only part of response body

I'm performing login on server using HttpPost method. CommonsConnection.initHttpConnection(); HttpResponse response; String contentOfMyInputStream; HttpGet initPostMethod = new ...
0
votes
1answer
1k views

Parse live stream HTTP chunked transfer JSON with jQuery?

Here is live HTTP stream that delivers streaming JSON objects using chunked transfer encoding: http://stream.meetup.com/2/rsvps Is it possible to parse this JSON request using jQuery getJSON ? I ...
0
votes
1answer
357 views

Why no `Set-Cookie` headers in response?

I found sometimes browser can't get cookies from my website, so I use curl to check the headers, and the information is: C:\Documents and Settings\jack>curl http://localhost -I HTTP/1.1 200 OK ...
0
votes
1answer
468 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
312 views

Read Flex/Flash URL which has Transfer-Encoding chunked

I have a problem reading from Flex a url which has Transfer-Encoding: chunked because the FLex waits for the server to send terminate signal which in chunked transfer isn't sent...
0
votes
1answer
285 views

HTTP Chunked Transfer Coding and MFC

I have a Proprietery Client-Server application written in MFC. No clients other then my client is going to communicate with the server . For safetly reason , we are using HTTP. Until know , we used ...