2
votes
4answers
248 views
Grabbing status code without using a server-side language (javascript, perhaps?)
I've created a service that helps with error pages in web apps via an snippet of code that is copy/pasted in to the error page templates (a la Google Analytics). The status code is …
0
votes
0answers
10 views
Apache 400 Absolute Path for Blogs
Here is an example of a blog with this issue.
It uses Apache to send a 400 error, but keep the url as is.
Is there a way in Apache using a .htaccess file to keep the url as is so …
3
votes
2answers
85 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?
0
votes
1answer
42 views
403 error in Google App Engine with staticdir
Hi,
For some reason I can't get static_dir to work. In my app.ymal I have:
- url: /ui
static_dir: ui
- url: /dump
static_dir: dump
Loading static files from /ui wo …
1
vote
5answers
346 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 wi …
1
vote
3answers
109 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 …
2
votes
4answers
44 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 …
1
vote
2answers
50 views
Java library to map HTTP status code to description?
I'm in the situation where I'm writing custom error pages for a webapp (primarily to reduce information disclosure from the servlet container's default error pages). Since I need …
1
vote
2answers
50 views
Google Chrome; refresh doesn’t send If-Modified-Since header
Hi there,
As I am currently developing a website that simply must be able to perform more or less flawlessly under a lot of stress and switching from an automated test scenario, I …
1
vote
1answer
53 views
Accessing XMLHttpRequest from the success ajax event in jQuery
According to the doc, the 'error' ajax event gets passed the XMLHttpRequest object, 'success' does not.
http://docs.jquery.com/Ajax/jQuery.ajax
That's a shame, because I would li …
2
votes
2answers
57 views
RESTful API response status code disambiguation
I'm developing a RESTful API and have a question about the most appropriate response status codes for certain scenarios.
Consider the case where the client makes a GET request for …
2
votes
2answers
54 views
HTTP Response Question
Is it valid to return different text in the response header than the usual fare?
For example if the request is invalid, could I respond with:
HTTP/1.1 400 Here be Dragons
And h …
1
vote
2answers
180 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 a …
0
votes
1answer
150 views
400 Bad Request when getting a page with PHP Curl
I keep getting a 400 bad request code from a hotfile.com page when I try to get it with curl.
I can get the pages fine in the browser
The first (login) (post) request in the scri …
0
votes
1answer
58 views
Asp Classic return specific http status code
How can I return a specific http status code from an asp classic?
