Tagged Questions

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 ...
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 ...
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
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
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
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
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
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 ...