Re: Best Practices for Form-Based Authentication With Struts

2006-10-31 Thread Asad Habib
Thanks Li. Is the use of filters good practice as well? And what about container-managed authentication using j_security_check? - Asad On Tue, 31 Oct 2006, Li wrote: you can use form authentication (JDBCRealm based) or JAAS. You may have to choose a cipher (e.g. md5 or sha-1). Besides that,

Re: Best Practices for Form-Based Authentication With Struts

2006-10-30 Thread Li
you can use form authentication (JDBCRealm based) or JAAS. You may have to choose a cipher (e.g. md5 or sha-1). Besides that, you 'd enable SSL. On 10/31/06, Asad Habib <[EMAIL PROTECTED]> wrote: What is the best way to authenticate a user with Struts? I have a table in my database which hold

Best Practices for Form-Based Authentication With Struts

2006-10-30 Thread Asad Habib
What is the best way to authenticate a user with Struts? I have a table in my database which holds the credentials for valid users and this table needs to be checked when a user trys to log in via a form. I am also using Hibernate as an ORM. Any help would be appreciated. Thanks. - Asad -