I am trying to retrofit the Ajax JSP Tag Library server side *servlet *code to fit the S2 lifecycle. I have a particular situation where my custom result works if I:
PrintWriter pw = response.getWriter();
pw.write(request.getParameter(blah, blah, blah);
pw.close();
but does not when using :
RequestDispatcher dispatcher =
request.getRequestDispatcher(getLocation());
dispatcher.include(request, response);
Shouldn't the .include write to the response in much the same way?
Peace,
Scott

