NSURLConnection supports 100 Continue in the sense that if the server
sends a 100 Continue response, NSURLConnection will properly parse and
discard the 100 Continue sent by the server and wait for the "true"
response. However, it does not support Expect: 100-continue in the
sense of attaching it to the request header, then waiting for the
server's 100 Continue prior to transmission of the request body.
We've never had a request for this before; if this is functionality
you need, please file a bug report that includes an explanation of how
it's helpful to you. Thanks!
- REW
On May 8, 2007, at 8:10 AM, Dave Dribin wrote:
Hello,
Does NSURLConnection support the "Expect: 100-continue" header?
From writing a quick test, it doesn't seem that it does. Even if I
explicitly add an "Expect: 100-continue" header, the client sends
the whole body, instead of waiting for "100" response from the server.