I have one JSP page that have a form. When the button in this form is pushed, id called my MainServlet. This is an example of my Servlet
/***** MainServlet *****/
/* Call the servlet that comunicate with database */
request.getRequestDispatcher("Servlet1").forward(request,response)
/* Return on the same JSP that have invoke MainServlet */
request.getRequestDispatcher("myJsp.jsp").forward(request,response);
return;
This is wrong because when I push the button in the form, my server return an error: "Cannot forward after response has been committed"
How can I solve this problem?
Thanks.