I have a a form that I am submitting via ajax. I am using the jquery form plugin. What I am trying to do is get the 'Location' header which is returned from my server. I can see it in firebug. But whenever I call the getResponseHeader() function in my success callback, it always returns 'undefined'..

Code:

form.ajaxForm({
  dataType: 'xml',
  data: {format: 'xml'},
  resetForm: true,
  success: function(xml,status,xhr){
    var location = xhr.getResponseHeader('Location');
    alert(location);
  });

location is undefined. But I can see the 'Location' header in firebug. What am I missing? Even if I call getAllResponseHeaders() from the xhr object, it returns 'undefined'

link|improve this question

Just to add: This has been tested in both firefox and opera. Same results – Nik Petersen Dec 6 '10 at 19:22
feedback

2 Answers

An XMLHttpRequest will transparently follow a redirect, so the final request won't have the header, it's already followed that redirect and you're seeing the response headers from that request (not the initial request which had the Location header).

link|improve this answer
The server generates a 201 Created response. I sure hope jquery doesn't interpret this as a redirect. And firebug does not show a second request. – Nik Petersen Dec 6 '10 at 21:13
@Nik - It has a Location header though, right? that's a redirect. – Nick Craver Dec 6 '10 at 21:14
It does have a location header, but if I understand the http response codes, 30x series means redirect. not 20x. 20x does not imply further action. The location header should be informational. But maybe I am wrong? – Nik Petersen Dec 6 '10 at 21:24
@Nik - Do you have a server I can see this on? You're sure the initial response is a 201, the initial one with the Location header...not the second? – Nick Craver Dec 6 '10 at 21:27
After checking my server logs for my ruby on rails application, I do not see a second request after the 201 response. So xhr is not redirecting to the location. That is fine, but maybe jquery is getting confused? Any more ideas? Thanks for your help. ;) – Nik Petersen Dec 6 '10 at 21:28
show 5 more comments
feedback

I'm doing something similar using the rails/rest way of returning a 201 "created" with a Location header to the new object and an empty body. jQuery's ajax method will throw a "parseerror" when encountering this since its expecting json but getting nothing back. I simply catch the 201 redirect in my error callback like so:

function request_error(req, textStatus, errorThrown) 
{
    if (req.status == 201 ) {
        var created_loc = req.getResponseHeader('Location');
        console.log('(201) created: ' + created_loc);

        // ... manual redirect here i.e. issue another ajax request to created_loc
        return;
    }

    // ... handle an actual error here
}

hope this helps!

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.