I use jQuery to make an AJAX POST request to my server, which can return HTTP response with status 302. Then JavaScript just sends GET request to this URL, while I'd like to redirect user to URL in this response. Is this possible?

link|improve this question

50% accept rate
feedback

5 Answers

up vote 5 down vote accepted

The accepted answer does not work for the reasons given. I posted a comment with a link to a question that described a hack to get round the problem of the 302 being transparently handled by the browser:

http://stackoverflow.com/questions/199099/how-to-manage-a-redirect-request-after-a-jquery-ajax-call

However, it is a bit of a dirty hack and after much digging around I found what I think is a better solution - use JSON. In this case, you can make all responses to ajax requests have the code 200 and, in the body of the response, you add some sort of JSON object which your ajax response handler can then use in the appropriate manner.

link|improve this answer
Not much applicable in many cases [if you have a framework handling authorization] – naugtur Apr 12 at 11:29
feedback
function doAjaxCall() {
   $.ajaxSetup({complete: onRequestCompleted});
   $.get(yourUrl,yourData,yourCallback);
}

function onRequestCompleted(xhr,textStatus) {
   if (xhr.status == 302) {
      location.href = xhr.getResponseHeader("Location");
   }
}
link|improve this answer
1  
at least in FF this does not work as the complete handler is called with the final HTTP status which is 200 for a successfull redirect (even though firebug correctly shows the 302 response followed by the 200 GET request). – o_o Sep 18 '09 at 16:51
Same here - not working in FF, as well as in Opera. – Almad Sep 22 '09 at 14:09
Check out the post stackoverflow.com/questions/199099/…. This explains a bit of a hack to get around the browser automatically handling the 302 for ajax response. – Steg Oct 1 '09 at 23:25
This does not catch 302 response. – h--n Jan 1 at 20:19
feedback

I don't think so. The W3C says that HTTP redirects with certain status codes, including 302, must be transparently followed.

As an experiment, I tried doing Ajax requests from various browsers (Firefox 3.5, Chrome, IE8, IE7, IE6) to a server giving a 302 status code, and showing the status in the browser's request object. In every case, it showed up as 200.

link|improve this answer
feedback

Rather than asking the Javascript code to Handle 302, it would be better to return a 500 with custom error code+ message on event of 302

link|improve this answer
feedback

In my problem reason was:

i was using localhost/Home/Test addres for testing the page. But ajax request code using 127.0.0.1/Home/AjaxRequest for url parameter. When the urls are different this error occurs.

maybe it helps someone :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.