I'm trying to set the header request using jquery like
beforeSend:function(xhr){
xhr.setRequestHeader("Authorization", "Basic " + Base64.encode(user + ":" + pass));
}
but apparently the setRequestHeader is not functional in s60 3rd edition, either on s60 5th edition, so i tried to set it as bellow in s60 5th edition:
processData:false,
type:"GET",
username: user,
password: pass,
dataType: "json",
url:url_verify_password
and it works though the request has the HTTP_AUTHORIZATION parameter set, but not on E71 the HTTP_AUTHORIZATION param is not there so i wonder if there is a way to pass the HTTP_AUTHORIZATION with header request in E71

Reply With Quote

