What does HRESULT 0x8019012F (HTTP_E_STATUS_REDIRECT_METHOD) mean?

 
Previous Next
HTTP_E_STATUS_REDIRECT HTTP_E_STATUS_NOT_MODIFIED

HTTP_E_STATUS_REDIRECT_METHOD

HTTP_E_STATUS_REDIRECT_METHOD maps to HTTP 303 See Other. The server directs the client to retrieve another resource, typically with a GET or HEAD request, rather than treating the redirect target as a continuation of the original method.

Common interpretation

  • A common pattern is POST/Redirect/GET: a form or API action completes, then the server returns a URI that describes the result.
  • Check that the client follows the redirect with the method intended by the protocol and application.
  • Verify the Location URI and preserve any correlation identifier needed to retrieve the resulting resource.

RFC 9110: 303 See Other


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