| Previous | Next |
| HTTP_E_STATUS_RANGE_NOT_SATISFIABLE | HTTP_E_STATUS_SERVER_ERROR |
HTTP_E_STATUS_EXPECTATION_FAILED
HTTP_E_STATUS_EXPECTATION_FAILED maps to HTTP 417 Expectation Failed. The server cannot meet the expectation expressed in the request, commonly an Expect: 100-continue header used with large request bodies.
What to check
- Capture the full
Expectheader and determine whether the endpoint or an intermediary supports it. - Check for legacy proxies that reject or mishandle
100-continue. - Change the client behaviour only after verifying that the request remains correctly framed and that large uploads will not be sent unnecessarily.
RFC 9110: 417 Expectation Failed
RFC 9112: HTTP/1.1 expectation handling
Looking for a different code? Search another status or error code.