Tagged Questions

HTTP status codes are a set of standardized codes returned in an HTTP web response.

learn more… | top users | synonyms (1)

28
votes
3answers
5k views

403 Forbidden vs 401 Unauthorized HTTP responses

For a web page that exists, but for which a user that does not have sufficient privileges, (they are not logged in or do not belong to the proper user group), what is the proper HTTP response to ...
26
votes
4answers
6k views

REST HTTP status codes

I'm building an application with a REST-based API and have come to the point where i'm specifying status codes for each requests. What status code should i send for requests failing validation or ...
22
votes
4answers
6k views

HTTP status code for update and delete?

What status code should I set for UPDATE (PUT) and DELETE (e.g. product successfully updated)? Thx
19
votes
5answers
2k views

What's an appropriate HTTP status code to return by a REST API service for a validation failure?

I'm currently returning 401 Unauthorized whenever I encounter a validation failure in my Django/Piston based REST API application. Having had a look at the HTTP Status Code Registry I'm not convinced ...
12
votes
1answer
5k views

Android: How get the status-code of an HttpClient request

I want to download a file and need to check the response status code (ie HTTP /1.1 200 OK). This is a snipped of my code: HttpGet httpRequest = new HttpGet(myUri); HttpEntity httpEntity = null; ...
12
votes
4answers
8k views

HTTP status code 200 (cache) vs status code 304?

I'm using the Google "Page Speed" plug-in for Firefox to access my web site. Some of the components on my page is indicated as HTTP status: 200 200 (cache) 304 By Google's "Page Speed". What I'm ...
11
votes
5answers
269 views

Is it OK to return a HTTP 401 for a non existant resource instead of 404 to prevent information disclosure?

Inspired by a thought while looking at the question "Correct HTTP status code when resource is available but not accessible because of permissions", I will use the same scenario to illustrate my ...
11
votes
7answers
7k views

How can I get the HTTP status code out of a ServletResponse in a ServletFilter?

I'm trying to report on every HTTP status code returned from my webapp. However the status code does not appear to be accessible via the ServletResponse, or even if I cast it to a ...
10
votes
4answers
516 views

Are the HTTP status codes defined anywhere in the iOS SDK?

Does anyone know if/where the HTTP status codes, as specified here, are defined in the iOS SDK? Or should I expect to manually re-define them in a constants file? Thanks.
10
votes
6answers
655 views

What HTTP Status Codes Should Programmers be Concerned With?

So, if you look at the List of HTTP Status Codes, there are probably a number of them that would be useful while programming. The server might handle some things, like protocols, but a lot of these ...
9
votes
2answers
280 views

Why does Python's urllib2.urlopen() raise an HTTPError for successful status codes?

According to the urllib2 documentation, Because the default handlers handle redirects (codes in the 300 range), and codes in the 100-299 range indicate success, you will usually only see error ...
9
votes
4answers
514 views

What HTTP status response code should I use if the request is missing a required parameter?

I am thinking 412 (Precondition Failed) but there may be a better standard?
9
votes
2answers
993 views

What is correct HTTP status code when redirecting to a login page?

When a user is not logged in and tries to access an page that requires login, what is the correct HTTP status code for a redirect to the login page? I don't feel that any of the 3xx fit that ...
9
votes
3answers
2k views

In Python, how do I use urllib to see if a website is 404 or 200?

How to get the code of the headers through urllib?
9
votes
4answers
3k views

Eradicating 401 “Unauthorised” responses followed by 200 “Ok” responses

I’ve got a situation with a large internal corporate web based application running ASP.NET 3.5 on IIS6 generating 401 “Unauthorised” responses followed by 200 “Ok” responses (as profiled by Fiddler). ...
8
votes
4answers
284 views

What HTTP code to use in “Not Authenticated” and “Not authorized” cases?

I read that "401 Unauthorized" code must be used when a user: Is not logged, but login is required ("not authenticated"); Is logged, but his profile don't allow to see that url ("not authorized"); ...
7
votes
3answers
1k views

Set Response Status Code

I have an API call for which I need to be able to run some checks and potentially return various status codes. I don't need custom views or anything, I just need to return the proper code. If the user ...
7
votes
5answers
2k views

REST: Mapping application errors to HTTP Status codes

Is it to be considered good practice to reuse RFC HTTP Status codes like this, or should we be making up new ones that map exactly to our specific error reasons? We're designing a web service API ...
7
votes
4answers
6k views

jQuery Ajax - Status Code 0?

For some reason, my Dashcode developed application has just stopped ajax'ing and returning status codes of 0. Does anybody have any idea why.. has this happened to you?
7
votes
2answers
4k views

How to programatically set Response.StatusCode different than 200 OK in ASP.NET Application and still serve content to client successfully?

Setting Response.StatusCode = 404 doesn't serve content under neither IE8 nor Chrome? It works in Mozilla though I find it strange! Do the simplest of things - empty asp.net web application project ...
7
votes
2answers
340 views

HTTP status code for bad data

What HTTP status code should I return when a client posts bad data (e.g. a string when integer was expected)? I've been using 400 Bad Request, but as I read over the HTTP docs that seems more ...
6
votes
4answers
1k views

HTTP 400 (bad request) for logical error, not malformed request syntax

The HTTP/1.1 specification (RFC 2616) has the following to say on the meaning of status code 400, Bad Request (§10.4.1): The request could not be understood by the server due to malformed ...
6
votes
4answers
704 views

How to check if a webpage exists. jQuery and/or PHP

I want to be able to validate a form to check if a website/webpage exists. If it returns a 404 error then that definitely shouldn't validate. If there is a redirect...I'm open to suggestions, ...
6
votes
6answers
199 views

Is HTTP 404 appropriate for out of range page number on paged content?

I have a site that is mainly showing a paged list of content (articles, data element's, etc.), and I'm wondering about returning HTTP 404 when user navigates outside of the available list range (eg. ...
6
votes
4answers
975 views

What http status code is supposed to be used to tell the client the session has timed out?

In a webpage, it uses YUI connection manager/datasource to send AJAX requests to the server, if the session (which contains the info on whether the user has been authenticated) has already timed out, ...
5
votes
6answers
204 views

Correct http status code for resource which requires authorization

There seems to be a lot of confusion about the correct http status code to return if the user tries to access a page which requires the user to login. So basically what status code will be send when ...
5
votes
1answer
257 views

Ajax call getting canceled by browser

I am using the Prototype JS framework to do Ajax calls. Here is my code: new Ajax.Request( '/myurl.php', {method: 'post', postBody: 'id='+id+'&v='+foo, onSuccess: success, onFailure: failed} ); ...
5
votes
2answers
183 views

A generic mechanism to deal with HTTP status codes

I know you can specify error pages in web.xml as below <error-page> <error-code>404</error-code> <location>/404.html</location> </error-page> I find it a ...
5
votes
1answer
249 views

http status code 400 in middle east countries

I have an iPad app which loads a plist from a server fine on a UIWebView but when I try to get it as response string from the server, it returns a http status code 400 with response string as Request ...
5
votes
4answers
345 views

After a POST, should I do a 302 or a 303 redirect?

A common scenario for a web app is to redirect after a POST that modifies the database. Like redirecting to the newly created database object after the user creates it. It seems like most web apps ...
5
votes
4answers
1k views

WCF 4 REST service can't return a StatusDescription, only StatusCode

I'm currently migrating my WCF RESTful service from .NET 3.5 (Starter Kit) to .NET 4. I started my project using a WCF Rest service template from Visual Studio 2010. I had to figure out how to keep my ...
5
votes
4answers
743 views

Parsing HTTP status code

I am using PHP to parse the numeric portion of the HTTP status code response. Given a standard "HTTP/1.1 200 OK" response, I'd use: $data = explode(' ', "HTTP/1.1 200 OK"); $code = $data[1]; I'm ...
5
votes
3answers
252 views

What HTTP status code is most search-engine-friendly during a planned outage?

If you have to take a site down for some type of unavoidable maintenance task (and it's not a big enough site that you have a backup server), what HTTP status code should you have your server return ...
4
votes
1answer
29 views

Test Proxy to see if it requires Authentication

I have a list of proxies that I want to loop through and test to make sure they are working and also test to make sure that they do not require a username and password. However, the test does not ...
4
votes
1answer
198 views

WCF Silverlight service returns custom fault but as HTTP 500 response not 200

It seems like I've been banging my head with custom faults in my Silverlight WCF service forever so I will happily DO MY BEST TO BUY A BEER for anyone who can help me solve this!!! After much pain I ...
4
votes
1answer
174 views

What HTTP code should REST return for a resource that is not ready after a 202 code?

Can't seem to find the answer to this question anywhere. Have a service that when something is posted, it gets queued to be processed with a response code of 202. The standard says to provide a ...
4
votes
1answer
627 views

how do I check an http request response status code from iOS?

I am sending an http request from iOS (iPad/iPhone) to my python google app engine server using the NSURLConnection and NSURLRequest classes. How do I read the response's status, i.e. the value set by ...
4
votes
1answer
606 views

Webpy: how to set http status code to 300

Maybe it is a stupid question but I cannot figure out how to a http status code in webpy. In the documentation I can see a list of types for the main status codes, but is there a generic function to ...
4
votes
3answers
755 views

Specify supported media types when sending “415 unsupported media type”

If a clients sends data in an unsupported media type to a HTTP server, the server answers with status "415 unsupported media type". But how to tell the client what media types are supported? Is there ...
4
votes
1answer
93 views

What HTTP status code should I return that tells the browser to stay in the current page?

I have a table with lots of generic link from a DB. Now the customer wants to restrict certain types to be linked (or showed). Changing the page that makes the links is very hard, so I want to show ...
4
votes
3answers
406 views

Should I use 404 Not found or 410 Gone for a bulletin board system, when a topic is deleted?

I'm creating a bulletin board system, and now I'm implementing a 'delete topic' feature for admins. If someone opens the deleted topic, the server cannot find it, so it must be 404. On the other hand, ...
4
votes
1answer
1k views

Asp Classic return specific http status code

How can I return a specific http status code from an asp classic?
4
votes
2answers
1k views

Python CGI returning an http status code, such as 403?

How can my python cgi return a specific http status code, such as 403 or 418? I tried the obvious (print "Status:403 Forbidden") but it doesn't work.
4
votes
7answers
2k views

Proper use of HTTP status codes in a “validation” server

Among the data my application sends to a third-party SOA server are complex XMLs. The server owner does provide the XML schemas (.xsd) and, since the server rejects invalid XMLs with a meaningless ...
3
votes
2answers
58 views

Correct HTTP status code for a not satisfiable REST request

I currently develop a task queue with a RESTful API. In order to handle a task, a worker has to create a lease. PUT .../leases If the task queue has tasks available, this will succeed, a lease ...
3
votes
3answers
58 views

HTTP status code for “More user input please?”

I am designing a RESTful API and am using the usual HTTP status codes like 200, 404, 500, etc. Given the situation where occasionally the API will require additional data. When this event arises it ...
3
votes
2answers
70 views

Faking Http Status Codes in IIS/.net for testing

This is quite an odd question, but I am trying to test the Web.Config settings for custom errors e.g.: <customErrors mode="On"/> <error statusCode="500" redirect="500.html"/> ...
3
votes
1answer
301 views

Return HTTP Status “created” in Play! Framework

I have a create action in a Play! framework controller that should return the HTTP status code Created and redirect the client to the location of the created object. public class SomeController ...
3
votes
2answers
162 views

Returning Http Status Code to Apache from PHP?

On my local development machine, I downloaded PDT + Zend Server, which included Apache 2.2.16 and PHP 5.3.5, running on Windows 7. On my local site, I included a .htaccess that includes ErrorDocuments ...
3
votes
1answer
51 views

Does the name of an HTTP status code matter

Say I'm sending some HTTP status code in PHP, do I actually need to do header('HTTP/1.1 301 Moved Permanently'); or is it enough to header('HTTP/1.1 301 FooBar'); I once did this in a quick and ...

1 2 3 4 5 6