Hi,
I ran into something that I never thought of before and it stumped me.
I have a site done using servlets and JSPs. There is an auth mechanism that works well and is much liked. There is now the need to add a static directory containing static HTML pages under the same umbrella. The requirement is that these pages should not be converted to JSPs and I should also use the same auth session as the JSPs do. In other words people should not be able to access the static pages without authenticating using the same credentials as the JSP site.
I am not sure quite how to do this as Filters only come into the picture if its a JSP or servlet isn't it? I also do not want a special configuration in the WebServer for this directory as that would make it go outside the realm of the original auth session I am trying to use.
Any pointers on how to achieve this?
Thanks, - Pav