Tagged Questions

2
votes
3answers
81 views

Get Size of HTTP Response in Java

Hi, 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 …
1
vote
1answer
149 views

Why does Comet need chunked-encoding response?

I read some articles about Comet tech. All of them mentioned that the long-life HTTP response should be Transfer-Encoding: chunked . I'm wondering why it should be chunked-encoded. If the response is …
1
vote
3answers
987 views

Why does IIS not support chunked transfer encoding?

I am making an HTTP connection to an IIS web server and sending a POST request with the data encoded using Transfer-Encoding: chunked. When I do this, IIS simply closes the connection, with no error …
1
vote
2answers
1k views

Chunked Encoding Implementation in .NET (or at least pseudo code)

I wrote a raw TCP client for HTTP/HTTPS requests, however I'm having problems with chunked encoding responses. HTTP/1.1 is requirement therefore I should support it. Raw TCP is a business requirement …
0
votes
1answer
41 views

Anyone have sample code for doing a “chunked” HTTP streaming download of one web directly to a upload to a separate web server???

Hi, Background - I'm trying to stream an existing webpage to a separate web application, using HttpWebRequest/HttpWebResponse in C#. One issue I'm striking is that I'm trying to set the file upload …
0
votes
0answers
55 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
1answer
53 views

WCF Rest client and Transfer Encoding Chunked: Is it supported?

I have a datacontract as defined below: [DataContract(Namespace="",Name="community")] public class Community { [DataMember(Name="id")] public int Id{get; set;} [DataMember(Name="name")] …
0
votes
2answers
220 views

Chunked transfer decoder, code snippet for C

I'm making a http server that merely allows access to my folder, download the files in it and also uploading to a folder. So far I have already done most of it, the only thing left is the uploading of …
0
votes
2answers
302 views

Python HTTP server that supports chunked encoding?

I'm looking for a well-supported multithreaded Python HTTP server that supports chunked encoding replies. (I.e. "Transfer-Encoding: chunked" on responses). What's the best HTTP server base to start …
0
votes
1answer
184 views

Are the chunk sizes in an HTTP response with “Transfer-Encoding: chunked”, significant to protocols that sit on top of HTTP?

Does anything carried inside HTTP care about chunk sizes? Some sort of RPC protocol perhaps? EDIT: Here's the Wikipedia sample response Date: Mon, 30 Mar 2009 22:22:21 GMT HTTP/1.1 200 OK …
0
votes
2answers
712 views

Problem turning HTTP Chunking off in AXIS2

Hi 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 …