RE: JAASRealm/LoginManager questions

2003-02-10 Thread Jim Krygowski
Hi Bryan- I've done something similar to this on Tomcat and JRun. I noted in your last comment: > But as you say prior, the filters aren't even being run, apparently, > before the container evaluates j_username and j_password, so I guess I > have no Servlet-standard hook there. I guess it's off

RE: accessing/modifying 404 page in tomcat?

2003-01-27 Thread Jim Krygowski
Hi Prashanth- try: 404 /your_custom_404_error_page_here.html in your web.xml file just after the welcome-file-list. > -Original Message- > From: Prashanth Pushpagiri [mailto:[EMAIL PROTECTED]] > Sent: Monday, January 27, 2003 11:27 AM > To: Tomcat Users List

RE: Programmatic login

2002-11-15 Thread Jim Krygowski
Hi Jurgen- It is possible to subclass FormAuthenticator so that it "short-circuts" the typical servlet login process. What you need to do is define a standard login url in your applications, I chose /security and parameterize the url with information like j_username, j_password, j_redirect_url.