RE: API for authenticating user

2004-05-28 Thread Koji Sekiguchi
and resources are TOTALLY invisible to web applications. So, I think I cannot call CoyoteRequest.setUserPrincipal(). Any idears? regards, Koji -Original Message- From: Koji Sekiguchi [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 26, 2004 11:58 AM To: Tomcat Users List

RE: API for authenticating user

2004-05-28 Thread Koji Sekiguchi
, response ); but this doesn't work, too. Please help. Koji -Original Message- From: Koji Sekiguchi [mailto:[EMAIL PROTECTED] Sent: Friday, May 28, 2004 3:15 PM To: Tomcat Users List Subject: RE: API for authenticating user As I told in this thread before, what I want to do

RE: API for authenticating user

2004-05-27 Thread Koji Sekiguchi
is initialized to include all classes and resources required to implement Tomcat 5 itself. These classes and resources are TOTALLY invisible to web applications. So, I think I cannot call CoyoteRequest.setUserPrincipal(). Any idears? regards, Koji -Original Message- From: Koji Sekiguchi [mailto

RE: API for authenticating user

2004-05-25 Thread Koji Sekiguchi
: Koji Sekiguchi [mailto:[EMAIL PROTECTED] Sent: May 23, 2004 21:14 To: [EMAIL PROTECTED] Subject: API for authenticating user Hi, I'd like to know how to authenticate a new user when he/she subscribe his/herself so that he/she can avoid login procedure. I've successfully set up Form

RE: API for authenticating user

2004-05-25 Thread Koji Sekiguchi
, there is not an API for this in J2EE or container-managed authentication. I accomplish this in an example app that I wrote - using cookies and a redirect to j_security_check. For a demo, see http://demo.raibledesigns.com/appfuse. Matt On May 25, 2004, at 7:51 PM, Koji Sekiguchi wrote

API for authenticating user

2004-05-24 Thread Koji Sekiguchi
Hi, I'd like to know how to authenticate a new user when he/she subscribe his/herself so that he/she can avoid login procedure. I've successfully set up Form Authentication and JDBC Realm on Tomcat 5.0.24. But now, new users must visit login page to authenticate

API for authenticating a user

2004-05-23 Thread Koji Sekiguchi
Hi, I have the following jsp deployed on Tomcat 5.0.24: login.jsp secure/secretInfo.jsp registerUser.jsp : I've successfully set form authentication with JDBC Realm. If users who haven't login try to access secure/* pages, they are constrained by tomcat and move to login.jsp.