I'm trying to modify the Connection header with the following code with no success

jQuery.ajax({
    url: URL,
    async: boolVariable,
    beforeSend: function(xhr)   
    {
        xhr.setRequestHeader("Connection", "close");
    }   
})

The request headers via Firebug show:

Connection  keep-alive
X-Requested-With    XMLHttpRequest

Any odd bugs/problems with setting this particular header known? Or is there something I'm doing wrong?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

According to the standard here you are not allowed to set the Connection header. It will terminate the set header. Also if you try this in webkit the console will output Refused to set unsafe header "Connection" So it looks like you will not be able to do what you want on the client side.

link|improve this answer
I even checked headers on w3. Just not xmlhttprequest obj. Thanks. – Pat Jun 2 '10 at 4:46
No problem glad I could help – Jeff Beck Jun 2 '10 at 4:49
feedback

Your Answer

 
or
required, but never shown

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