security « Form « JSF Q&A





1. How to display logged in user, JSF 2.0 Application with form based security    stackoverflow.com

I have configured a form based log in in my JSF 2.0 Application on GlassFish 3 server, using a custom Realm. What is the simpliest way of getting information about a ...

2. forms authentication (j_security_check) with JSF    coderanch.com

You can't. Use a regular JSP for your login and loginfail pages. Unlike the normal application webpages, container-based logins via forms are managed directly by the application container (Tomcat), and the infrastructure you need to run JSF isn't available. Container-based login prompts are presented whenever a URL maps to a secured part of the website and the user isn't already logged ...