0
votes
2answers
167 views

OpenShift, Tomcat7 and JDBC Realm

I am trying to deploy JaveEE Tomcat7 based application to OpenShift. Whole configuration is based on Tomcat 7 (JBoss EWS 2.0) catridge. Up to now I'd developed my application locally and all worked ...
0
votes
1answer
61 views

Java security annotations ignored

I'm building a Maven Web Application user authentication. I created a new JDBC Realm in Glassfish and setup my domain classes with JPA. I can login with some created users and can check if they have a ...
1
vote
1answer
358 views

Glassfish JDBC + LDAP Realms

I'd like to authenticate users using both JDBC and LDAP connections. In the database I have usernames, roles, and a flag indicating if the user is allowed to log in. NAME | ROLE | ALLOWED user1 | r1 ...
0
votes
1answer
2k views

JDBC Realm Form Authentication How To [duplicate]

Possible Duplicate: JDBC Realm Login Page Hello to all, i would like to create an application login feature which bundled with jdbc realm and with custom login form(Form based ...
1
vote
3answers
2k views

JDBC Realm Login Page

i tried to create a login page using JDBC realm but did not works. My steps : Create database, user and group table Create connection pool and data source, custom realm. Add security ...
0
votes
1answer
356 views

Legacy application with JDBC and JNDI REALM authentication

My application currently relies on JDBC realm authentication. Recent needs have forced us to think about having LDAP authentication as well. We are thinking about using Active Directory for both ...
1
vote
2answers
2k views

Tomcat 6.0 manager authentication via JDBC realm

I wanted to configure Tomcat6.0 authentication via JDBC realm Configuration.** I checked following: -All my "users" and "roles" are stored in MySQL database. -MySQL JDBC drives are in tomcat\lib ...
3
votes
2answers
5k views

Implement a Tomcat Realm with LDAP authentication and JDBC authorization

I'm working in a legacy environment where an LDAP server is used only for authentication and contains no roles, and authorization is done against a database which contains the user-role mapping, but ...