Re: [Web-SIG] httplib and 100-continue support

2010-05-25 Thread Graham Dumpleton
On 26 May 2010 15:19, Deron Meranda wrote: > On Wed, May 26, 2010 at 12:32 AM, Graham Dumpleton > wrote: >> Bigger problem may be to find a server which actually supports >> 100-continue in the way one would expect it to work. > > Fortunately in my specific case that's not an issue as I wrote > t

Re: [Web-SIG] httplib and 100-continue support

2010-05-25 Thread Deron Meranda
On Wed, May 26, 2010 at 12:32 AM, Graham Dumpleton wrote: > Bigger problem may be to find a server which actually supports > 100-continue in the way one would expect it to work. Fortunately in my specific case that's not an issue as I wrote the server from scratch (in C) and so I have full contro

Re: [Web-SIG] httplib and 100-continue support

2010-05-25 Thread Graham Dumpleton
On 26 May 2010 05:58, Deron Meranda wrote: > I'm trying to use httplib to make a PUT request.  I'd like to > be able to correctly use the 100-continue expectation > handshake as HTTP/1.1 recommends, such that I wait for > a 100 status code back before I send the body.  The only > examples I've fou

[Web-SIG] httplib and 100-continue support

2010-05-25 Thread Deron Meranda
I'm trying to use httplib to make a PUT request. I'd like to be able to correctly use the 100-continue expectation handshake as HTTP/1.1 recommends, such that I wait for a 100 status code back before I send the body. The only examples I've found immediately send the request body without waiting f