Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
482 views

What is the correct HTTP status code to send when a site is down for maintenance?

Is there a HTTP status code to tell Google (and others) to go away, index me again later? Basically, one that semantically tells clients that the site is down for maintenance? The ones I have ...
6
votes
1answer
2k views

Setting Response.Status Generates “HTTP Status String is Not Valid” Exception

I'm writing an HTTP handler in ASP.NET 4.0 and IIS7 and I need to generate a file-not-found condition. I copied the following code from Mathew McDonald's new book, Pro ASP.Net 4 in C# 2010. (The ...
5
votes
4answers
693 views

NSUrlConnectionDelegate - Getting http status codes

in iOS, how can I receive the http status code (404,500 200 etc) for a response from a web server. I am assuming it's in the NSUrlConnectionDelegate. Objective-C or Monotouch .NET answer ok.
4
votes
1answer
75 views

changing a specific header in yaws respond

I would like to change the http-header "Server: " value dynamically (while building the respond) in yaws. I tried:- [{status, 200}, {allheaders, [{header, ["Server: ","ASP.NET ...
3
votes
3answers
94 views

Tracking and testing for abusive clients in PHP

Now there is a subject that could be taken many ways. Hopefully I will be able to de-obfuscate it as I describe my problem and start getting suggestions. I am developing a site that will be ...
2
votes
3answers
57 views

When using Ajax with PHP, which of the following are necessary to verify success?

Which of the following answers are correct ? HTTP ready state of TRUE HTTP ready state of 4 HTTP status code < 400 HTTP status of 200 Data present in the response
2
votes
2answers
274 views

Signalling authentication failure in a RESTful API

I'm writing a small application which exposes a simple REST-ish HTTP API. I'm stuck trying to decide how to signal a failure due to a lack of authorization. The app does not have an API for ...
1
vote
2answers
56 views

REST API - best method for error handling

When constructing an API response, which method is better for (manually) returning the status code to indicate the validity of the request: 1 - Embed a response code within the JSON response { ...
1
vote
1answer
46 views

How to find the location URL in a Django response object?

Let's say I have a Django response object. I want to find the URL (location). However, the response header does not actually contain a Location or Content-Location field. How do I determine, from ...
1
vote
2answers
61 views

Invalid first parameter ($string) of header() has no effect while using the third parameter ($http_response_code)

Short question: Can I rely on the behaviour of header('.', TRUE, 404);, header('.', TRUE, 501);, etc.? Now, let me elaborate. Before asking my question, I'll present a few usages of the header() ...
1
vote
3answers
124 views

Android Java - convert HttpPost result to byte[]

I'm trying to get the HttpPost result from server and converting it into byte array and get the the specific bytes from byte[]. For now I'm using this code and it's working. I need to change it to ...
1
vote
2answers
535 views

RSpec testing in Rails and 304 HTTP status code

Using Devise for authentication. On a controller that has: before_filter authenticate_user!, :except => [ :index, :show ] I always get 304 Not Modified status code instead of 200 OK on the ...
1
vote
2answers
1k views

PHP: How to send http response code?

I have a PHP script that needs to make responses with http response codes, like HTTP 200 OK, or some 4XX or 5XX code. How can I do this in PHP?
0
votes
1answer
57 views

Grails URLMapping to Response Codes doesn't work if the request is POST

I am a little crazy about this. At first, my mapping is like below "500"(view:'/error/exception') But, then we found, if the exception is throw in Spring Security code, the error page is not ...
0
votes
0answers
38 views

response code 200 from IE but response code 0 for other browsers

I created a local web page, and calling a remote web service, the response code for IE is 200 but other browsers response code is 0 can any one help for this this is my code for html file ...
0
votes
1answer
38 views

From a spring mvc controller action, how do I get access to request/response?

My action looks like: public String add() { return "/WEB-INF/views/add.jsp"; } In this case I need access to a posted form field parameter. Once I receive the posted parameter value, I will ...
0
votes
2answers
324 views

Getting multiple http response codes using cURL?

Please take a look at this sample code: function http_response($url) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HEADER, TRUE); ...
0
votes
2answers
57 views

Unable to obtain the response code! Pointers?

I am trying to crawl 300,000 URLs. However, somewhere in the middle, the code hangs when trying to retrieve the response code from a URL. I am not sure what is going wrong since a connection is being ...
0
votes
2answers
92 views

Code hangs when trying to get the response code

I am trying to crawl 300,000 URLs. However, somewhere in the middle the code hangs when trying to retrieve the response code from a URL. I am not sure what is going wrong since a connection is being ...
0
votes
1answer
195 views

Returning different response codes under MVC2 POST

I am developing a REST API using MVC2. When handling a POST request in an Action method, am supposed to populate various custom Response headers with values, and also set specific HTTP response ...
0
votes
2answers
94 views

Localizing reason phrase in status line of the RESTful HTTP API reponse

We have a RESTful API exposed over HTTP that in a natural way makes use of HTTP status-line (status-code and reason-phrase) to communicate the API result to the client ...
0
votes
3answers
118 views

Checking Response Code C#

I was wondering if there's a way to detect the response codes on a website using C#? Since C# .NET has HTTP-based methods, I'm assuming that it can be done? Thank you
0
votes
1answer
434 views

PHP Curl get HTTP code, not whole document

I'm using curl in PHP to check the HTTP code when requesting some files, I'm trying to make my speed run faster so I'm wondering is there a way to make it get the HTTP code without actually getting ...
0
votes
1answer
273 views

How can send back my own 404 error message in ASP.NET , but as json?

i'm trying to send back a simple error message as Json, with the HTTP code as 404. So i started out writing my own IExceptionFilter that checks to see the exception. To keep this simple, if the ...