The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
16 views

Android responseCode 400 if Android-version lower than 4

somebody knows why I get the ResponseCode 400 on android 2.x ? In Android 4.x it works and the server returns 200. URL url = new URL(url_in); URI uri = new URI(url.getProtocol(), ...
0
votes
2answers
56 views

click-spam protection with Jquery and Ajax?

I want to make a validation (click-spam-protection), if a user clicks on too much links in some seconds. Lets say I want to restrict one href button of the same type to activate a counter that ...
0
votes
1answer
54 views

Why does HttpURLConnection.getResponseCode() throws IOException?

I can see that getResponseCode() method is just a getter Method that returns the statusCode already set by the a connect action that happened before. So in this context why does it throw an ...
0
votes
0answers
33 views

How long does Chrome remember a 301 redirect?

I have a new author site that I want to make available from a domain that I had previously used Apache rewriting to bounce traffic to my Amazon site, [R=301,L], which I want to serve up as my own ...
0
votes
0answers
84 views

why $http_response_header is NULL?

After doing file_get_contents($url) the $http_response_header is NULL. When I serve the URL in a browser, I get 302 Moved Temporarily server reply. How to know the server response code, if not by ...
0
votes
2answers
56 views

What is 206 partial content

<img src="img.png"/> I have some images on the site like above. When I try to load them they are loading only half. When I checked the requests in console. I see that the response is ...
3
votes
4answers
104 views

Is there a content Header Type for adding HttpResponseHeader?

The only method I see in HttpResponseHeaders is Add which takes string type for header type. I just wonder did .NET provided a list of HttpResponseHeader type contants in string? So I can do: ...
1
vote
0answers
39 views

Devise authentication responds sometimes with 302 instead of 201

I have modified Devise's session controller slightly to make it respond with 201 code even if an user is logged in: class SessionsController < Devise::SessionsController # POST /resource/sign_in ...
7
votes
3answers
128 views

What response code is appropriate for this situation?

I'm developing a webgame. As part of the game, you start out with a limited set of features, and you unlock more of them as you play. For instance, you unlock /fields as part of step 3 in the ...
0
votes
1answer
63 views

What HTTP response code should be used for an OPTION request?

I noticed that the Mozilla HTTP response codes documentation states that The methods PUT, DELETE, and OPTIONS can never result in a 200 OK response. However it doesn't make clear what response ...
1
vote
1answer
104 views

Correct response to POST request for long running process

I am trying to code an API which has a long running process to which an end user may make a POST request: POST /things { "some":"json" } The actual creation process can take some time, will often ...
0
votes
0answers
66 views

incorrect response code when using custom error page

When custom error pages are enabled in web.config on IIS 7, I see the following two response codes in HttpFox when trying to access a non-existent resource: (1) /undefined 302 Found (2) ...
6
votes
1answer
365 views

How to serve audio file for streaming from Grails with code 206?

I'm trying to stream out an audio/wav using HTML5 feature in the following way: <audio type="audio/wav" src="/sound/10/audio/full" sound-id="10" version="full" controls=""> </audio> ...
4
votes
4answers
134 views

Why does cURL sometimes require the “www.” part of a URL to work, and vice versa?

For instance, using this code: $curl = curl_init(); curl_setopt_array( $curl, array( CURLOPT_RETURNTRANSFER => true, CURLOPT_URL => "$url" ) ); curl_exec( $curl ); $header = ...
0
votes
1answer
116 views

How to get a response from localhost server in GWT client side?

I have a WCF based web service and hosted on local machine written in c#. I want to get a response from this hosted service in my GWT client side. Please check the following code: url = ...
0
votes
1answer
40 views

Why do I see the HttpResponseCode '200' when I have not even deployed the web-application?

In my IDE only one web-project is opened and that is deployed on the Tomcat Server. But the following code tries to connect to a web-app that is neither open in the IDE nor is deployed by the Tomcat. ...
1
vote
1answer
110 views

Unexpected response to HTTP POST request in Android

I recently came across strange problem when sending / recieving data thru http POST request on Android. I had difficulties with setting Fiddler to monitor the traffic between my Android app and ...
3
votes
2answers
348 views

HTTP response code when requested websocket subprotocol isn't supported/recognized

When upgrading an HTTP connection to a websocket, one can provide one or more subprotocols in the optional HTTP header 'Sec-WebSocket-Protocol'. If the server accepts any of the subprotocols it ...
2
votes
1answer
166 views

HTTP response code to throttle google search appliance bot (gsa)

What HTTP response code should be used to throttle a badly behaved web crawler: 403 Forbidden 503 Service Unavailable Should any explanation be returned in the headers or in the body?
0
votes
2answers
143 views

django raise other status code than http404?

I'm new to both web in general/django world. I've been raising Http404 for all my error cases (from my view). I think raising other than 404, such as 401, 402.. for different errors would be much ...
1
vote
0answers
161 views

HttpResponseCache dose not work on Galaxy S3

I am facing one issue with respect to the implementation on HTTPResponseCache. The implementation work very well in Android 4.0.3 Version present in Galaxy S2 device, where as same code does not work ...
1
vote
1answer
150 views

Haskell SimpleHTTP get response code

I'm trying to get the response code (200,404 etc) from i THINK a Response type in the HTTP class with simpleHTTP Thus far: --how to get the http response Int from response getStatusCode response = ...
0
votes
1answer
208 views

How to modify HTTP Response Using Filters in MVC 3 Razor?

HtML section in _Layout.cshtml <div id="header"> <div class="logo"><a href="#"><img src="@Url.Content("~/!(IMAGEPATH)!/logo.png")" alt="" /></a></div> ...
0
votes
0answers
43 views

How come a request to the server is answered with the 301 status code and with the SAME location I asked for in the Location header?

I'm writing a script which tries to access a web-page through HTTP. (The real page is not public, so I'll use an example page to explain my question.) For example, I'm trying to GET the page ...
3
votes
1answer
522 views

RESTful Login Failure: Return 401 or Custom Response

This is a conceptual question. I have a client (mobile) application which needs to support a login action against a RESTful web service. Because the web service is RESTful, this amounts to the ...
0
votes
0answers
133 views

Url is changing for every invokation

i have to implement the api which will post the data to https://www.walmart.com and get registered the user. For this i have to get the data from xls file and post the data to below url ...
1
vote
1answer
165 views

PHP fopen receiving Continue 100 and fail

Having a problem with trying to do an fopen on php. I'm sending across a data set of about 300kb to a Generic Handler (.ashx file). A solution on either the .Net or PHP side would be welcome. The code ...
5
votes
3answers
2k views

Download file Error 2 , FileTransferError.INVALID_URL_ERR

I'm using Phonegap[cordova 1.7.0] to download a file using Xcode[ios5]. This is the code I'm using to download the file: function downloadfile(){ var fileTransfer = new FileTransfer(); ...
0
votes
4answers
578 views

How can I get the description of ResponseCode of HttpURLConnection?

After calling the following code, getResponseCode() returns the response code returned by the remote HTTP server. This code has a short description. How can I get its description programmatically in ...
1
vote
1answer
405 views

Http Response Code programatically

Based on the condition, i want to send a 400(infact any code other than 200(Status OK)) error code back from my Asp.net page. if(Failed) { Context.Response.TrySkipIisCustomErrors = true; ...
0
votes
3answers
475 views

curl request returning wrong response code

I am having a need of getting http response code for page urls from sitemap.xml file. When i get the response code by my cron process it returns 403 (Known as access forbidden : though i can access ...
1
vote
2answers
895 views

Return HTTP error from RESTeasy interface

Is it possible to return a HTTP error from a RESTeasy interface? I am currently using chained web-filters for this but I want to know if it is possible straight from the interface... Example ...
4
votes
4answers
1k views

Making Struts send 500 Internal Server Error when exceptions get thrown

I'm working on an AJAX-enabled JavaScript frontend that makes calls to a Java backend written with Struts. My problem is that when the backend throws an exception, the client still sees a "200 OK" ...
6
votes
1answer
843 views

What's a proper response status code to REST POST request when duplicate is found?

In my RESTful API client might try to post information that is already in the database, this is not an error, rather something client can ignore, maybe notify the user about already existing ...
0
votes
3answers
219 views

Choosing the right HTTP response code for incorrect POST data

I suspect this is a very trivial question. I'm writing a PHP script to respond to an AJAX query. The query should include some XML data, which the PHP script processes and then returns a response to. ...
0
votes
1answer
220 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
1answer
738 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 ...
2
votes
2answers
428 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 { ...
4
votes
2answers
227 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 ...
1
vote
1answer
323 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 ...
2
votes
2answers
186 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() ...
0
votes
3answers
502 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 ...
12
votes
4answers
10k 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.
0
votes
2answers
1k 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
93 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
181 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
266 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 ...
2
votes
3answers
75 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
1
vote
2answers
1k 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 ...
0
votes
2answers
270 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 ...

1 2