JSP forward
Hi all,
I'm trying to forward a request, in a JSP_A, to JSP_B which is in a different context.
This request was forwarded from a servlet to JSP_A.
How can I do this?
In JSP_A, I have something like this
<%
getServletContext().getContext("/a").getRequestDispatcher("/b/c.jsp").forward(request, response);
%>
but this exception is thrown : getOutputStream() has already been called for this response.
Thanks in advance

