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

learn more… | top users | synonyms (1)

0
votes
0answers
16 views

How to detect Error 404 on this webpage?

This page will launch a 404 error but I can't recognize it in my code. http://www.mp3crank.com/releases/1920/page/1 This is the code: Dim request As HttpWebRequest = ...
2
votes
0answers
19 views

HTTP: error during reply after 200 OK status code

As an HTTP 1.1 server, I reply to a GET request with 200 OK status code, then start sending the data to the client. During this send, an error occurs, and I cannot finish. I cannot send a new status ...
0
votes
0answers
7 views

Safari on iPad - Incorrect handling of HTTP status code 204

We are rendering an ASP.Net web form with a runat="server" tag in a bootstrap modal. We use the built in bootstrap capability to use the jQuery load function perform a get request and then insert the ...
1
vote
0answers
36 views

ASP.NET 4 catch status code xxx

I want to catch, for example, 403 in my code. I've got vs 2012 an created new solution WebApplication1 as ASP.NET Empty Web Application. I've added a Global.asax and then added an handler to all the ...
0
votes
1answer
15 views

Proper use of HTTP Error Codes. 550 - Why is it 5xx instead of 4xx?

Today a co-worked used a 550 error on a delete action when the user doesn't have permission which at first looked to me bad because as I'm aware of, that kinda error looks like a client (aka 4xx) ...
3
votes
1answer
71 views

To 406 or not to 406 (http status code)

I'm developing a RESTful web application in Ruby with Sinatra. It should support CRUD operations, and to respond to Read requests I have the following function that formats the data according to what ...
1
vote
1answer
34 views

400 vs 422 response to POST of data

I'm trying to figure out what the correct status code to return on different scenarios with a "rest-like" API that I'm working on. Let's say I have a ending point that allows POST'ing purchases in ...
1
vote
2answers
47 views

What is the recommend workflow for doing web authentification (HTTP status codes)?

I'm writing a web application which requires a user login. As you might recognise there are many workflows for responding on invalid user credentials. Most browsers are captable of storing (accepted) ...
0
votes
2answers
82 views

python http status code

I'm writing my own directory buster in python, and I'm testing it against a web server of mine in a safe and secure environment. This script basically tries to retrieve common directories from a given ...
2
votes
3answers
55 views

What's the correct HttpStatusCode to return for a required parameter that's missing? [duplicate]

I'm building a Web API method to check if a name is unique of that type and need to make sure the name parameter is given. What's the correct status code to return? public HttpResponseMessage ...
0
votes
1answer
39 views

Is a HTTP 405 status response allowed to have a body?

I am building a RESTful API. When the client uses an unsupported method such as POST on a resource that does not supports it, I am returning a 405 with the Allow header which lists the allowed ...
0
votes
1answer
78 views

ajax callback, http status codes and validation

I've been working a server side ajax class that is used to return a json string. This class, for example, could return the json data whenever an ajax request is performed on the server. Now, I am ...
0
votes
1answer
41 views

what is differences between If-Modified-Since and lastUpdated in passbook web service reference

I am doing a server for updating a pass in passbook. I can register and unregister it from server. Next, I have to get serial of pass and latest version of pass when a pass is updated. what is ...
0
votes
0answers
29 views

Detect 400 bad request with html5 video

I have a CDN that uses this thing called "Media Vault" which allows me to store files "securely" and are accessible by passing a hashed password to them like ...
0
votes
1answer
44 views

php curl immediately redirect if got 3xx status code

I am creating web scraping with php and curl. I look that if the status code of http respond is 3xx, curl still download the body content. If the body content is small I think this is no problem, but ...
0
votes
1answer
39 views

Returning http status code from mutiple cURL in PHP

I am trying to return two http status codes from the header information from two parallel cURL requests my script makes. So far my script is as below, the print_r() at the end prints out: Array ( [0] ...
0
votes
0answers
47 views

ASP.NET MVC - Status Codes without HTML

I am developing an ASP.NET MVC 4 project on my local machine using IIS Express using Visual Studio 2010. I have a controller that returns HTTP status codes via HttpStatusCodeResult. I am noticing that ...
0
votes
0answers
44 views

Should UrlAuthorizationModule return HTTP 403 instead of HTTP 401?

Setup: Have an ASP.NET application with Windows Authentication hosted in IIS7. I also, have a CustomSqlRoleProvider which returns the roles associated to the user. Url Authorization module is ...
3
votes
3answers
56 views

What HTTP status code for unactivated account?

Which HTTP status code should I respond with after authenticating the user and then finding out that they have not activated their account after registration?
0
votes
2answers
41 views

HTTP status codes: differentiating between being over capacity and being down for maintenance

HTTP status code 503 is described in rfc2616 as being relevant when the server is "currently unable to handle the request due to a temporary overloading or maintenance of the server". There are cases ...
-2
votes
2answers
55 views

Body of IF-statement not executed (HttpURLConnection)

The body of the IF-statement is never executed. Why is this? Assume String urlRequest = "http://stackoverflow.com/"; Here's my code: try { URL url= new URL(urlRequest); ...
0
votes
1answer
61 views

Determine that URL will / have been redirected to a different URL programmatically

I need to download a bunch of apks from a market. Analyze each file if it contains ads inside using Multi-apk tool and compress it again (This is not the issue so I won'd discuss it any further) ...
0
votes
1answer
98 views

Facebook returning HTTP status code 502 while making a GET Request

I am trying a GET request from Facebook for a batch of ids using my app access token separated by a comma. Please find below the call: ...
1
vote
2answers
96 views

Using respond_with to serve 404?

I'm trying to serve up a custom 404 response in rails, but I'm not sure how to give the :status to a respond_with function. I know with render, I can do something like this: render :status => ...
0
votes
1answer
47 views

In Google Apps Script, how can I set the HTTP response code for a service I implement?

Say I have "service" returning a XML document: function doGet() { var result = '<result>42</result>'; var output = ContentService.createTextOutput(result); ...
2
votes
1answer
110 views

Is HTTP status 422 appropriate for records that fail uniqueness validation?

I've done it a lot of times (and seen many people do so), but i start to wonder if it is appropriate : if @record.save # status 200 else # failure of validations => status 422 end Now i see ...
1
vote
2answers
63 views

HTTP status code when single request asks for too large resource or too many of them

Does somebody know which HTTP status code is the right one for the following situation? An anonymous client can request a range of items from a collection from RESTful API with GET ...
3
votes
1answer
99 views

Python Requests: response object does not contain 'status' header

This is Requests 1.1.0 and Python 2.6.4 (also same behavior on Python 2.7.2). >>> import requests >>> response = requests.get('http://www.google.com') >>> ...
6
votes
3answers
472 views

Does every successful HTTP request always return status code 200?

In Delphi, I'm using Indy's TIdHTTPWebBrokerBridge coupled with TIdHTTP to send/receive data via HTTP. On the Server, I don't have any fancy handling, I always just respond with a simple content ...
0
votes
1answer
80 views

How can I detect a jQuery ajax error response?

I am able to detect a successful response but not able to detect an error. My code: $.ajax({ url: url, dataType: 'jsonp', success: function(data){ ...
0
votes
0answers
34 views

Rails output header then exit with message

Is there a way to do something like this, but in Rails: In PHP: <?php header("HTTP/1.0 400 Bad Request"); die("My error message"); ?> In Sinatra: return 400, 'Error: My Error ...
3
votes
1answer
73 views

Should I use HTTP Status code 410 for removed stock on a web site?

I'm building a site for a motorcycle dealer, and their used stock changes daily. Currently, when stock is removed, Google Webmaster tools sees Error 404, which I should imagine would damage the ...
1
vote
1answer
145 views

HTTP Response Code for Proxy Authorization Failure

What should be the HTTP response code for Proxy Authorization failure? I know that 407 is the response code for requesting Proxy Authorization. But, once the clients sends the authentication info to ...
0
votes
0answers
300 views

PHP cURL through proxy

I'm trying to send a cURL request through a proxy in PHP. $c = curl_init(); curl_setopt($c, CURLOPT_URL, $this->url); curl_setopt($c, CURLOPT_PROXY, $this->proxy); curl_setopt($c, CURLOPT_POST, ...
2
votes
3answers
81 views

HTTP Status 202 - how to provide information about async request completion?

What is the appropriate way of giving an estimate for request completion when the server returns a 202 - Accepted status code for asynchronous requests? From the HTTP spec (italics added by me): ...
4
votes
1answer
79 views

Most appropriate HTTP status code for “job in progress”

What is the most appropriate HTTP status code to give to a client to mean "your request is fine, but it is still in progress; check back shortly in the exact same place." For example, say the client ...
0
votes
0answers
150 views

Slim framework halt error codes not working

I have just built a restful API with Slim Framework. For error conditions I simply respond with appropriate error codes for each error case and called with $app->halt, for example: $app->halt(403, ...
0
votes
2answers
160 views

Laravel won't obey status code

I just can't understand, and don't know where else to look, as the response status code of the following code is always 200, even if I set it to 400 in the main Response class. class Api_Controller ...
0
votes
1answer
68 views

Can an HTTP OPTIONS request return a 204 or should it always return 200?

According to http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.2 the only response ever mentioned regarding an HTTP OPTIONS request is a 200. However, there seem to be cases such as when the ...
0
votes
0answers
236 views

Weird behaviour in Spring ExceptionHandler

I'm building a REST API. When the @Controller throws an exception I want to properly set status codes. In order to achieve this, all controller methods have been declared throws ClientException, ...
1
vote
3answers
777 views

How can I return an error message and HTTP status code that calls jQuery AJAX error function?

Using Spring, I have a SimpleMappingExceptionResolver that catches any unexpected exceptions in my application in the resolveException method. In the method, I return a ModelAndView that gives error ...
1
vote
2answers
274 views

How to set http response header when php is used with g-wan

I add the header function in the hello.php sample, as below: <?php header("xxxxx: yyyyy"); fwrite(STDOUT, "see headers.<br><br>Hello, PHP!<br>current working directory: ...
0
votes
1answer
96 views

Cover Art API URLRequest using Actionscript [Solved]

I'm trying to use cover art archive api. Cover Art Archive var request:URLRequest = new URLRequest(); request.url = "http://coverartarchive.org/release/76df3287-6cda-33eb-8e9a-044b5e15ffdd/"; ...
-1
votes
1answer
136 views

Http status code in response of php(Magento) web service developed for iOS app

I am developing a iOS app like eBay. For this web service developer is using Magento. He developed the web service for Login. Following are the situations : 1) If I send valid login credentials , he ...
1
vote
2answers
136 views

Which HTTP status code to use when REST API user is trying to acces an object and there is an error?

I am trying to find the proper status code to return, here's what I have in mind so far: GET /api/documents/1 - document exists, user has access - 200 OK GET /api/documents/2 - document exists, user ...
0
votes
1answer
62 views

Non-existent images returning status code 200 rather than 400

I do the following code to check if an image exists: public bool DoesImageExist(string imageUrl) { bool exists = false; try { HttpWebRequest request = ...
0
votes
1answer
155 views

MVC 3 API custom response body on error

I'm trying to write an API with a login method + others. When there is an issue logging in, I would like to return a custom HTTP error code to the client with a custom response body. The problem is ...
2
votes
0answers
163 views

Can I Set the HTTP Response Code & Throw an Exception on an ASMX JSON Service?

In an ASP.NET ASMX WebMethod that responds JSON, can i both throw an exception & set the HTTP response code? I thought if i threw an HttpException, the status code would be set appropriately, but ...
2
votes
1answer
89 views

What's the deal with HTTP status code 308?

An IETF RFC draft The Hypertext Transfer Protocol (HTTP) Status Code 308 (Permanent Redirect) defines HTTP status 308 as Permanent Redirect. It should, of course, be noted that this is a draft ...
2
votes
2answers
99 views

Http response codes for invalid data and data conflict [duplicate]

Possible Duplicate: REST response code for invalid data Have the following REST resource: POST /user/{primary_key} The resource is intended to work like an "ADD/UPDATE" operation. This ...

1 2 3 4 5 9