Do I have to use j_security_check to authenticate?

2002-04-22 Thread Benjamin Drasin
Hello all- I have a servlet based application running on Tomcat 3.2. It uses a homespun security system which I would like to replace with standard J2EE security. However, when the user logs in there are a number of server-side tasks which have to be performed both before and after

Re: Do I have to use j_security_check to authenticate?

2002-04-22 Thread Benjamin Drasin
Thanks Rick, Some of my business code has to run before authentication takes place (the details are very specific to my application). Right now the code works like this, all in one servlet: 1)pre-authentication code 2)if ok to proceed 3) authentication code 4) post-authentication code