I have java classes that I call from my html file using this ajax code:
$.ajax({
type: "POST",
url:"http://www.verifiedalerts.appspot.com/verifiedalert?action=addIntrusionRules",
dataType:"text",
async:false,
data: "params=" + objStr,
success: function(data){
//alert(data);
}
});
when I see the log I get this error:
Uncaught exception from servlet java.security.AccessControlException: access denied
but when I run another similar file from a different computer it works somehow and now it is not working.
Does someone know how to get past this?