Here's my situation:
I want stuff under
mysite/customer/*
to require form-based authentication before access (login via mysite/customer/login.jsp, with its own user_password table and role. )
BUT
I want stuff under
mysite/admin/*
to require another form-based authentication before access (login via mysite/admin/login.jsp, with another set of admin_user_password table and role. )
Is it possible to do this under Tomcat 6.0? If so, can someone briefly describe how I could go about implementing this? I've looked around and only seen examples of 1 Realm setup...havent seen multiple Realm setup before.
I use JDBCRealm.