Guys, has someone set up an application on WAS 7 to authenticate users from a database?
I've been reading the docs and I'm surprised how hard it is to find out a solution... On
JBoss we just need to add some lines to login-config.xml and it's done!
So far, my options seem to be:
- to implement com.ibm.websphere.security.UserRegistry;
- to implement
LoginModule (JAAS);
- to leave behind the security provided by the server (!) and implement it programmaticaly (checking info in session...);
Any suggestions?