Authentication « Filter « JSP-Servlet Q&A





1. Overriding the JSP servlet (filter "*.jsp") to wrap in an authentication model    stackoverflow.com

Can the JSP servlet that filters on *.jsp (org.apache.jasper.servlet.JspServlet in Tomcat 6) be extended in some way so whenever someone goes to a JSP page I can do some server side ...

2. j2ee webapp A using authentication facility of web app B    stackoverflow.com

Any user that tries to access some secure resources on my webapp A needs to be authenticated with a webapp B. B has access to the user credentials password etc., I ...

3. mixing static html pages and JSPs    stackoverflow.com

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 ...

4. Tomcat SecurityFilter and Authorization    stackoverflow.com

I've implemented a simple filter that simply adds two Principles to the current session (see doFilter below). My problem is that this is firing when i request a resource but then ...

5. Setting Authentication Header in Servlet via Filter    stackoverflow.com

Preface This is my first attempt at a Filter, be gentle. Project Description I am trying to finalize a build for a SSO for several of our applications and I seem to be hitting ...

6. Authentication Servlet Filter    stackoverflow.com

I created java ee application with this tutorial: http://prideafrica.blogspot.com/2007/04/simple-authentication-servlet-filter.html but I do not know what libraries are needed. These lines give me the "cannot find symbol" errors:

User user = UserFacade.findByUsername(username);
UserToken ...