hi,
I wrote a simple request filter to check if the user is logged in before he can access any
JSP page. I mapped the filter to the action
servlet. Now the problem is that the filter works even when the login action is called. So it keeps directing the user to the login page. How do I prevent the filter from acting when the action is a login action ?
My filter code is as follows.