I've written a simple servlet for processing an Ajax request. On the server side, the doPost is called, but the data that I've set in the response object is not reflected on the client. (Actually, I'm not getting anything on the client according to Firebug). I'm using jQuery to handle the Ajax.
Client code:
$.post(
'/mapped/url?param=' + $('#eleId').val(),
function(data){
alert(data);
},
"xml"
);
On the server:
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
System.out.println("!!!In post!!!!");
// some calculations go here
response.setContentType("application/xml");
response.setHeader("Cache-Control", "no-cache");
response.getWriter().write("<data><param number=\"\"></param></data>");
response.setStatus(HttpServletResponse.SC_OK);
}
Thanks in advance!
<filter>fromweb.xmlto exclude one and other. Note that setting the response status is not possible when the response body is already committed. You should do it beforehand, but still then, setting a status 200 is already by default done. Just remove that line. – BalusC Jan 20 '11 at 20:35