2015-11-06 21:39:33 +01:00
|
|
|
---
|
|
|
|
set: 1
|
|
|
|
code: 100
|
|
|
|
title: Continue
|
2015-11-07 01:41:41 +01:00
|
|
|
references:
|
|
|
|
"Rails HTTP Status Symbol": ":continue"
|
2015-11-06 21:39:33 +01:00
|
|
|
---
|
|
|
|
|
2015-11-07 06:24:24 +01:00
|
|
|
The 100 Continue status code indicates that the initial part of a request has
|
2015-11-07 01:28:15 +01:00
|
|
|
been received and has not yet been rejected by the server. The server intends to
|
|
|
|
send a final response after the request has been fully received and acted upon.
|
|
|
|
|
|
|
|
When the request contains an Expect header field that includes a 100-continue
|
|
|
|
expectation, the 100 response indicates that the server wishes to receive the
|
|
|
|
request payload body, as described in
|
2015-11-07 03:59:14 +01:00
|
|
|
[RFC7231 Section 5.1.1][2]. The
|
2015-11-07 01:28:15 +01:00
|
|
|
client ought to continue sending the request and discard the 100 response.
|
|
|
|
|
|
|
|
If the request did not contain an Expect header field containing the
|
|
|
|
100-continue expectation, the client can simply discard this interim response.
|
|
|
|
|
2015-11-07 03:59:14 +01:00
|
|
|
Source: [RFC7231 Section 6.1.1][1]
|
2015-11-07 01:28:15 +01:00
|
|
|
|
2015-11-07 03:59:14 +01:00
|
|
|
[1]: <http://tools.ietf.org/html/rfc7231#section-6.2.1>
|
|
|
|
[2]: <http://tools.ietf.org/html/rfc7231#section-5.1.1>
|