[jQuery] xhr Permission Denied

[jQuery] xhr Permission Denied


HI, i have a problem whit my Jquery transaction , this is not cross
domain, and i use $.ajax,
in my local computer is ok, but in the web server return this error.
i think the trow verified in this point
    // Open the socket
        // Passing null username, generates a login popup on Opera (#2865)
        if( s.username )
            xhr.open(type, s.url, s.async, s.username, s.password);
        else
            xhr.open(type, s.url, s.async); <<====||
My code:
___________________________________________________________________
$.ajax({
type: "POST",
url: "ws/EOService.asmx/SendMail",
data: "{'email':'" + $("#<%=txtEmail.ClientID %>").val
() + "', 'fname':'" + $("#<%=txtFName.ClientID %>").val() +
"','lname':'" + $("#<%=txtLName.ClientID %>").val() + "','inquiry':'"
+ $("#<%=txtInquiry.ClientID %>").val() + "'}", contentType:
"application/json; charset=utf-8",
dataType: "json",
success: function(message) {
......
},
error: function(errormessage) {
........
});
}
});
});
-----------------------------------------------------------------------------------------------------------------------