Re: HTTP chunked transfer encoding implementation

2008-09-10 Thread Nick Zitzmann
On Sep 10, 2008, at 9:15 AM, Roman Kishchenko wrote: So, the solution to the problem seems to implement HTTP protocol from scratch using sockets and streams and handle described above chunk send semantics there. Before embarking on this interesting programming exercise, I am wondering if th

HTTP chunked transfer encoding implementation

2008-09-10 Thread Roman Kishchenko
Hi, I have the following use case. The client is making an HTTP POST request and would like to use chunked transfer encoding to send chunks of binary data to the server as they are generated. In particular, the client would like to avoid accumulating the data in its entirety before sending it to th