Re: Use of Apache proxy module to connect to Tomcat

2001-04-11 Thread Daniel Lopez
Hi, In our case, we use the Apache as proxy to be able to distribute our applications among several instances of servlet containers and/or hosts. This way, upgrading an application doesn't affect the rest and if we have to stop/start a container, just one or two applications are affected. On the

tomcat 3.3m2: blah/ = blah/index.jsp: how to prevent this?

2001-04-11 Thread Jan Grant
(Apologies for double sightings, mail barf) I sent the original to tomcat-user but, on perusing the source, it appears this list might be a better target. On Tue, 10 Apr 2001, Jan Grant wrote: Using tomcat 3.1, I could create an index.jsp file which would display properly when the user

Logging Memory Leak 3.2.2-beta2

2001-04-11 Thread Rainer Jung
Hi! I use tomcat 3.2.2-beta2 on Solaris 2.6 with JDK 1.2.2_06 and apache 1.3.14 on a Sun E420R with 4 CPUs and 4GB Memory. If I turn on verbosityLevel INFORMATION for JASPER_LOG in server.xml I can see a big memory leak. The leak does neither show up in version 3.2 nor does it appear when I

Re: tomcat 3.3m2: blah/ = blah/index.jsp: how to prevent this?

2001-04-11 Thread Jan Grant
[further to this] Looking at the proposed final draft of the 2.3 spec, it seems that redirecting to a welcome file isn't specified: the request should be forwarded instead - at least, the way I read the specs for javax.servlet.RequestDispatcher, together with section 8.4 and 9.9 Cheers, jan On

unsuscribe

2001-04-11 Thread pushpendra . singh
I want to unsuscribe, tell me how to do it? Singh.

Support for different Charsets

2001-04-11 Thread Jan Fnukal
Hi all, org.apache.tomcat.core.RequestImpl.handleParameters() could look like this: private void handleParameters() { if(!didParameters) { String qString=getQueryString(); if(qString!=null) { didParameters=true; // RequestUtil.processFormData( qString, parameters ); parameters =

RE: Logging Memory Leak 3.2.2-beta2

2001-04-11 Thread Marc Saegesser
I don't think your seeing a real memory leak. What's happening is that the logging mechanism in Tomcat doesn't actually write log messages to log files when Logger.log() is called. Logger.log() adds a log entry to a queue and returns immediately. A daemon thread then pulls the log entries off

RE: how can i unsubscribe

2001-04-11 Thread Aiden Doyle
This is the tomcat dev list, try [EMAIL PROTECTED] -Original Message-From: João Folha [mailto:[EMAIL PROTECTED]]Sent: Wednesday, April 11, 2001 2:47 PMTo: [EMAIL PROTECTED]; [EMAIL PROTECTED]Subject: how can i unsubscribe i already try this adresses: list-help:

Using JNDI with Jakarta-Tomcat 4.0 beta 3

2001-04-11 Thread Julian Payne
Hi, I have been using Jakarta-Tomcat 3.2.1 and when I upgraded to the 4.0 beta 3 I have a propblem with my JNDI configuration. I have a servlet that uses an EJB container that requires the following "jndi.properties" : java.naming.factory.initial

Using load-on-startup with 4.0 beta 3

2001-04-11 Thread Julian Payne
Hi, I am using Tomcat 4.0 beta 3 and I have a little problem with the option load-on-startup/ in my web.xml. If I use this option I have to put the jar files that are in my WEB-INF/lib directory into the classpath of Tomcat otherwise the load-on-startup fails. If I don't use this option then the

mod_webapp help!

2001-04-11 Thread T. Park
Hi Folks, Can anyone advise me how to build it using the sources supplied with tomcat 4.0 b3? My end goal is to be able to build it on NT with MSVC 6.0, but I've been trying to get it to compile on Solaris 2.8 with the 6.1 C compiler. I know that it was written for gcc - my next step is to

Re: tomcat 3.3m2: blah/ = blah/index.jsp: how to prevent this?

2001-04-11 Thread cmanolache
Hi Jan, Under tomcat 3.2.1, a request for "blah/" generates a 302 redirect to (also 3.3m2) "blah/index.jsp" rather than just serving up the content of index.jsp! Currently, it appears that if I wish to avoid broadcasting my use of JSPs, I've just got to code servlets and use those

Re: Using JNDI with Jakarta-Tomcat 4.0 beta 3

2001-04-11 Thread Torgeir Veimo
Julian Payne wrote: Hi, I have been using Jakarta-Tomcat 3.2.1 and when I upgraded to the 4.0 beta 3 I have a propblem with my JNDI configuration. I have a servlet that uses an EJB container that requires the following "jndi.properties" : java.naming.factory.initial

Re: Logging Memory Leak 3.2.2-beta2

2001-04-11 Thread cmanolache
Hi, If you want to save us a lot of time, could you get a demo of OptimizeIt or JProbe ( or use -hprof option in java ) and send the result. ( either of those will show you the allocated objects - if there is a leak then you'll see it there, just run 1 requests, GC, repeat few times, and

[Fwd: Watchdog sleeping?]

2001-04-11 Thread Shawn McMurdo
No one on watchdog-dev or general seems to know anything about the status of Watchdog. Does anyone here on tomcat-dev know what is up with Watchdog? Shawn -- Shawn McMurdo mailto:[EMAIL PROTECTED] Lutris Technologieshttp://www.lutris.com Enhydra.Org

Re: [jetty-discuss] Re: Jasper JSP maintainer required for Jetty project.

2001-04-11 Thread Greg Wilkins
[EMAIL PROTECTED] wrote: On Tue, 10 Apr 2001, Greg Wilkins wrote: Excellent - That sounds much easier for us to keep in sync with. Still, it would be good to have a maintainer to step forward and help us with the transition It may be good for somebody on the development team to

Netscape 3.6.1 on HP-UX (how do I use the nsapi-redirector?

2001-04-11 Thread Wick, Daniel
I've been searching through the documentation but can't find anything about using Tomcat with Netscape 3.6.1 on any Unix platforms. I'm stuck with Netscape, but would like to use Tomcat! Any help on where to find the correct redirector and how to install would be IMMENSELY appreciated. Thank

Re: [jetty-discuss] Re: Jasper JSP maintainer required for Jettyproject.

2001-04-11 Thread cmanolache
On Wed, 11 Apr 2001, Greg Wilkins wrote: [EMAIL PROTECTED] wrote: That's reasonably easy to do ( in 3.3 workspace the Log is just an independent class ,with no dependency on tomcat internals - except that it's in tomcat.util.log package ). The only hestiation I have with that, is

Re: Using JNDI with Jakarta-Tomcat 4.0 beta 3

2001-04-11 Thread Remy Maucherat
Hi, I have been using Jakarta-Tomcat 3.2.1 and when I upgraded to the 4.0 beta 3 I have a propblem with my JNDI configuration. I have a servlet that uses an EJB container that requires the following "jndi.properties" : java.naming.factory.initial

Re: cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/modules/session SessionIdGenerator.java

2001-04-11 Thread estutes
On 11 Apr, Bojan Smojver wrote: [EMAIL PROTECTED] wrote: Given that tomcat should run for days or weeks at a time, I don't think you want to keep /dev/random open. There maybe other processes that also need random data during that time. Are you really sure that other processes are unable

how can i unsubscribe

2001-04-11 Thread João Folha
i already try this adresses: list-help: mailto:[EMAIL PROTECTED]list-unsubscribe: mailto:[EMAIL PROTECTED]list-post: mailto:[EMAIL PROTECTED]

cvs commit: jakarta-tomcat-4.0/catalina/src/conf catalina.policy

2001-04-11 Thread glenn
glenn 01/04/11 14:32:50 Modified:catalina/src/conf catalina.policy Log: Update policy to support JNDI Revision ChangesPath 1.9 +23 -5 jakarta-tomcat-4.0/catalina/src/conf/catalina.policy Index: catalina.policy

Re: cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/modules/session SessionIdGenerator.java

2001-04-11 Thread Bojan Smojver
[EMAIL PROTECTED] wrote: As pointed out by someone else, at some point on a system that is not busy processes will hang on /dev/random waiting for their next chance to catch some randomness generated by things like mouse moves. And if you are on a server, the mouse may never move. There will

Re: CGI support servlet (TC 4) -- feedback wanted

2001-04-11 Thread Martin Dengler
Amy, Thanks for the feedback -- I have not been able to finish my changes but will take advantage of the upcoming weekend and look forward to getting something together for tester. Martin Amy Roh wrote: Right now they are basically the same scripts that I added to the examples webapp.

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/connector/http10 HttpConnector.java HttpProcessor.java

2001-04-11 Thread craigmcc
craigmcc01/04/11 18:06:14 Modified:catalina/docs/config http11.html catalina/src/conf server.xml catalina/src/share/org/apache/catalina/connector/http HttpConnector.java HttpProcessor.java

Re: [Fwd: Watchdog sleeping?]

2001-04-11 Thread Shawn McMurdo
Hi Jeff, Thanks for the info and the pointer! Shawn Jeff Turner wrote: On Wed, Apr 11, 2001 at 01:22:37PM -0400, Shawn McMurdo wrote: No one on watchdog-dev or general seems to know anything about the status of Watchdog. Does anyone here on tomcat-dev know what is up with Watchdog? I

RE: [Fwd: Watchdog sleeping?]

2001-04-11 Thread Marc Saegesser
Shawn, Could re-post your patches? I don't have the your original email with the patches. I'll see if I can find time look at them. Marc Saegesser -Original Message- From: Shawn McMurdo [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 11, 2001 8:11 PM To: [EMAIL PROTECTED]

Re: [Fwd: Watchdog sleeping?]

2001-04-11 Thread Shawn McMurdo
Thanks Marc! That would be great. Below are my comments from the message to watchdog-dev. Also, one change was because the test unnecessarily assumes the default mime type for the server is not "text/html". Attached is the patch. Let me know if you have any questions. Thanks again. Shawn

Re: Using JNDI with Jakarta-Tomcat 4.0 beta 3

2001-04-11 Thread Tim Tye
- Original Message - From: Remy Maucherat [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, April 11, 2001 1:47 PM Subject: Re: Using JNDI with Jakarta-Tomcat 4.0 beta 3 Hi, I have been using Jakarta-Tomcat 3.2.1 and when I upgraded to the 4.0 beta 3 I have a propblem

Re: [Fwd: Watchdog sleeping?]

2001-04-11 Thread Craig R. McClanahan
Shawn, Sorry for the slow response on this -- I'm still catching up from two weeks on the road speaking at conferences. Go ahead and send your patches directly to me, and I'll take a look, and get them installed as needed, on both jakarta-watchdog (servlet 2.2 / JSP 1.1) and