What does the HTTP 206 Partial Content status message mean and how do I fully load resources?

From user166390’s answer to the question Why does Firebug show a “206 Partial Content” response on a video loading request? This Partial Content code (206) may be sent from the server when the client has asked for a range (e.g. “give me the first 2MB of video data”). It is vital for downloading data in … Read more

What is “406-Not Acceptable Response” in HTTP?

Your operation did not fail. Your backend service is saying that the response type it is returning is not provided in the Accept HTTP header in your Client request. Ref: http://en.wikipedia.org/wiki/List_of_HTTP_header_fields Find out the response (content type) returned by Service. Provide this (content type) in your request Accept header. http://en.wikipedia.org/wiki/HTTP_status_code -> 406

403 Forbidden vs 401 Unauthorized HTTP responses

A clear explanation from Daniel Irvine: There’s a problem with 401 Unauthorized, the HTTP status code for authentication errors. And that’s just it: it’s for authentication, not authorization. Receiving a 401 response is the server telling you, “you aren’t authenticated–either not authenticated at all or authenticated incorrectly–but please reauthenticate and try again.” To help you … Read more