Hey all,
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 get 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 passed this?