Discussion:
How does the wininet handle the Staus Code 100
(too old to reply)
Jack Lee
2004-04-29 13:28:16 UTC
Permalink
When the server return the

HTTP/1.1 100 Continue


How does wininet handle this?
Stephen Sulzer
2004-04-30 22:00:20 UTC
Permalink
WinInet will essentially ignore 100-Continue responses. It will read the 100
response and discard it. If the application has registered a callback
function, WinInet will notify the app's callback with an
INTERNET_STATUS_INTERMEDIATE_RESPONSE notification.

Note that WinInet will not start reading any response data from the server
(including 100-Continue's) until the client has trasnmitted the entire
request.

Stephen
Post by Jack Lee
When the server return the
HTTP/1.1 100 Continue
How does wininet handle this?
Loading...