I am making an ajax call with jquery like:
$.ajax({
url: "path/to/webservice.asmx"
beforeSend: function(xmlHTTPRequest) {
}
success: function() {
}
}
What I would like to do in the beforeSend function is to accept the input variable xmlHTTPRequest, which is set and changes the headers to remove the cookie that is there, so when I call my web service it does not update the authentication form in asp.net
source
share