What does HRESULT 0x801901A0 (HTTP_E_STATUS_RANGE_NOT_SATISFIABLE) mean?

 
Previous Next
HTTP_E_STATUS_UNSUPPORTED_MEDIA HTTP_E_STATUS_EXPECTATION_FAILED

HTTP_E_STATUS_RANGE_NOT_SATISFIABLE

HTTP_E_STATUS_RANGE_NOT_SATISFIABLE maps to HTTP 416 Range Not Satisfiable. None of the ranges in the request Range header overlap the current selected representation, or the set of ranges was rejected as invalid.

What to check

  • Verify the current object length and the requested start/end offsets.
  • Inspect the response Content-Range header, which can identify the current length using the unsatisfied-range form.
  • When resuming downloads, validate the entity tag or modification state so that an old offset is not applied to a changed object.

RFC 9110: 416 Range Not Satisfiable


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