Problems with j_security_check
Hi,
I am using j_security_check for authentication in my application. I have also written a filter class.
In My filter class am calling j_security_check by giving :
argChain.doFilter(argRequest, argResponse);
After executing this am trying to forward my request to another jsp by giving request.getRequestDispatcher("url").forward(request, response).
When i give this am getting the error IllegalStateException. Response is already committed.
I appreciate if any one please tell me how to forward to another jsp from this filter class after calling j_security_check through filters.