Ive got a struts2 action that is invoked via a jQuery ajax call, I am trying to determine how to trap any exceptions that may be thrown. I am trying to do the following in jQuery call.
$.ajax({
type: "POST",
url: theUrl,
data: theData,
success: function (data, textStatus) {
// data could be xmlDoc, jsonObj, html, text, etc...
alert(textStatus);
if(textStatus === "success"){
theSuccessFunction(data);
}else{
alert('An Error has occurred.');
}
}
});
But regardless of what I do from the struts2 action, textstatus is always success. I have tried throwing an exception, calling sendError on the response?
Ive also tried the following, but it makes ie crash on error
$.ajax({
type: "POST",
url: theUrl,
data: theData,
success: theSuccessFunction,
error: function (XMLHttpRequest, textStatus) {
alert(textStatus);
}
});
Any help is appreciated.
