Wil start again, i have a jquery ui box that passes data onto my servlet, if the servlet fails the request, i have this set;
response.setContentType("text/xml");
response.setHeader("Cache-Control", "no-cache");
response.getWriter().write("<valid>false</valid>");
How can i access this from the success funtion? (or is that wrong?)
Here is my JQUERY CODE:
$.ajax({
//this is the servlet file that processes the data and send mail
url: "Register",
//GET method is used
type: "POST",
//pass the data
data: data,
//Do not cache the page
cache: false,
//success
success: function (response) {
//$( "#message" ).append( response );
}
successcallback is part of an AJAX request?? – Justin Ethier Mar 4 '11 at 18:34