RE: Frames vs Tables, I think Tables are the future! HTML examples please !

2004-05-26 Thread ben.hill
Don't use frames, frames are bad! ;-) > -Original Message- > From: Ben Bookey [mailto:[EMAIL PROTECTED] > Sent: 26 May 2004 08:26 > To: Tomcat User List > Subject: Frames vs Tables, I think Tables are the future! > HTML examples please ! > > > Dear list, > > I think most of us need to

RE: JAAS question ??

2004-05-25 Thread ben.hill
An example is here: http://www.kopz.org/public/documents/tomcat/jaasintomcat.html Albeit using a servlet filter. HTH Ben > -Original Message- > From: Eric Chow [mailto:[EMAIL PROTECTED] > Sent: 25 May 2004 10:04 > To: Tomcat Users List > Subject: JAAS question ?? > > > Hello, > > I

Help: Catalina Authentication

2004-05-25 Thread ben.hill
I've been looking into Catalina's source to try to understand what happens when a user is authenticated via the j_security_check. As far as I can see, there is a FormAuthenticator that extends AuthenticatorBase that calls .getRealm() then .authenticate(...) on that realm. >From here the realm (JDB

RE: Help: Tomcat JAAS Authentication Help (How does j_security_check work?)

2004-05-19 Thread ben.hill
If anyone has any insights; could you CC me in the reply. It seems I am having problems receiving the mails from tomcat-user. Cheers, Ben > -Original Message- > From: HILL, Ben -Syntegra UK > Sent: 18 May 2004 12:17 > To: [EMAIL PROTECTED] > Subject: Help: Tomcat JAAS Authentication Hel

RE: please take me off the mailing list!

2004-05-18 Thread ben.hill
Have you followed the instructions at the end of the message? > -Original Message- > From: Roy Smith [mailto:[EMAIL PROTECTED] > Sent: 18 May 2004 12:37 > To: [EMAIL PROTECTED] > Cc: Roy Smith > Subject: please take me off the mailing list! > > > I've made numerous attempts through othe

Help: Tomcat JAAS Authentication Help (How does j_security_check work?)

2004-05-18 Thread ben.hill
I'm trying to implement a servlet filter that intercepts requests to a servlet and if the user is not authenticated, run the supplied username and password through a JAAS authentication cycle. I would like to know how this process is done using the j_security_check as I'd like to implement the sam