What does HTTP status 411 (Length Required) mean?

 
Could be also:
ConstantTypeOS
ERROR_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILEOFFSETWin32 errorWindows
TTM_FATAL_ERRORBugCheck CodeWindows
Previous Next
HTTP_STATUS_GONE HTTP_STATUS_PRECOND_FAILED

HTTP_STATUS_LENGTH_REQUIRED

The server requires an explicit body length before it will accept the request. A client can retry with a valid Content-Length value when the request format and transport allow it.

Check whether the client sent a body, used chunked transfer coding, or stripped framing headers at an intermediary. Do not calculate a length from character count when the body is encoded bytes.

This response is about request framing, not the size of the representation itself. A client that can determine the body length can resend the request with Content-Length if the method and authentication flow permit it. If the body is streamed with unknown length, use a transfer mechanism accepted by that server or endpoint.

RFC 9110: HTTP Semantics


Looking for a different code? Search another status or error code.