Re: memory leak on context reload or stop/start? [was Re: tracking memory usage over time]

2003-03-13 Thread Uddhav Shirname
The release note of Tomcat 4.1.18 talks about a known memory leak with JSPs. I am not aware of its status with Tomcat 4.1.20. This is what it has to say, JAVAC leaking memory: The Java compiler leaks memory each time a class is compiled. Web

Re: Send parameters to the JNDIRealm

2003-03-12 Thread Uddhav Shirname
Hi, I am facing the same problem for JDBCRealm. As mentioned in one of my earlier mails I found that getPrincipal() method returns a harcoded null value (Tomcat 4.1.18). This method is an abstract class and is called from authenticate(). I checked up with JNDIRealm class, and it also has

Re: How to set and verify -Xmx and -Xms settings in Windows

2003-03-12 Thread Uddhav Shirname
There is another option JAVA_OPTS. Trying setting this and see if it works. -- Uddhav - Original Message - From: Mark Pease [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, March 13, 2003 3:43 AM Subject: How to set and verify -Xmx and -Xms settings in Windows I am really having

JDBCRealm getPassword() unimplemented in Tomcat 4.1.18 (returns null)

2003-03-11 Thread Uddhav Shirname
Hi, I am unable to authenticate using digest authentication. I browsed through the code and found that getPassword() method in JDBCRealm returns null (harcoded). I am using the following configuration. Am I missing something somewhere? server.xml: -- Realm

Re: JDBCRealm getPassword() unimplemented in Tomcat 4.1.18 (returns null)

2003-03-11 Thread Uddhav Shirname
), e); // Close the connection so that it gets reopened next time if (dbConnection != null) close(dbConnection); } return (principal); // return (null); // earlier code } - Original Message - From: Uddhav Shirname [EMAIL

Re: JDBCRealm getPassword() unimplemented in Tomcat 4.1.18 (returns null)

2003-03-11 Thread Uddhav Shirname
it possible. Thanks, Uddhav - Original Message - From: Uddhav Shirname [EMAIL PROTECTED] To: Tomcat Developers List [EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 7:53 PM Subject: Re: JDBCRealm getPassword() unimplemented in Tomcat 4.1.18 (returns null) Hi, I have implemeted the methods