Authentication in tomcat 4.1.27

2003-09-11 Thread Shailesh Modi
Hi, I am migrating my web application to 4.1.27 from tomcat 3 . In tomcat 3 , I had following code for authentication in server.xml. RequestInterceptor className=com.remind.securetomcat.SecRealm debug=0 initCtx=com.sun.jndi.ldap.LdapCtxFactory ldapHost=ldap://ldap.mycompany.com:389;

Re: Authentication in tomcat 4.1.27

2003-09-11 Thread Bill Barker
Have you ever got a fun project for you ;-). The first thing you must do is to make certain that your Realm implements org.apache.catalina.Realm (when I did this, it was a big enough change that I put the 4.x classes in a new package so that I could still see the 3.x versions). Personally, I