posted 15 years ago
@Nishan
I am already using an interceptor which extends "FilterDispatcher" by the way. The code goes something like this...
public void doFilter(ServletRequest req, ServletResponse res,
FilterChain chain) throws IOException, ServletException {
super.doFilter(req, res, chain);
}
Here, how do I check whether the user session is available or not?