security « Tomcat « JSF Q&A





1. question about GlassFish/Tomcat security realms    stackoverflow.com

I have GlassFish set up to use "JDBCRealm". The configuration looks like this and it works fine:

<JDBCRealm userTable="users" userNameCol="user_name" 
userCredCol="user_pass" userRoleTable="user_roles" 
roleNameCol="role_name" ... />
My database currently looks like this:
- USERS ...

2. j_security_check for jsf app not working in IE    stackoverflow.com

I have a simple jsf app developed and working on tomcat 6.0.13. I added some security contraints to the entire application by adding the usual setting in web.xml. When I now ...