Is it possible to, before sending a http message, remove some specific http headers using javascript / XmlHttpRequest ?
I\'m using a proprietary browser, so there\'s
You could use the setRequestHeader method of the XmlHttpRequest object assuming your browser supports it, It is part of the W3C spec. It is also implemented by IE.
var req = new XMLHttpRequest(); req.setRequestHeader("Authorization", "");