Re: Tomcat 4.1 hang - maybe in JK connector

2005-12-09 Thread Mirek Kopriva
Hi, We are solving similar problem right now. Setting the removeAbandoned increased the period between the stucking to 7 hours) What is your network configuration? Is there a firewall or something between tomcat and apache? We are getting stucked in communication between the jdbc driver in the

Re: Tomcat Security

2005-12-09 Thread Luis Correia
Hi to you all ! I've to check if the security settings of a Tomcat server are appropriated. Can anyone please tell me where should I start? Is there a security check list ? Please fell free to send me any documentation that you think it might help. I also have to analyse the security settings of

Re: Communication between Apache an Tomcat

2005-12-09 Thread Mirek Kopriva
What if you do JkMount /* ajp13 This way you should be able to access everything. Mirek On 12/8/05, Mladen Turk [EMAIL PROTECTED] wrote: marju jalloh wrote: JkMount /servlet/* ajp13 This might help: JkMount /*/servlet/* ajp13 Regards, Mladen.

Re: Multiple thread pools in Tomcat 5.5

2005-12-09 Thread David Kerber
Mikolaj Rydzewski wrote: Kirk Gray wrote: This e-mail is intended only for the personal and confidential use of the recipient(s) named above. It may include Blackboard confidential and proprietary information, and is not for redistribution. I wonder if you'll bue sued because this email is

Why only one Connector per Service?

2005-12-09 Thread Vinny
I am curious as to the reason there is only one connector for each service? I have a machine with 3 IP addresses. 1 IP is being used by another program running on port 80. That leaves me with 2 IPs that I can use for tomcat. The standalone virtual host method that I have used in the past seems to

RE: Why only one Connector per Service?

2005-12-09 Thread Carl Olivier
Hi. You can specify an address/port configuration per connector (yes you can have multiple) for a single service. E.g. Connector address=192.168.0.2 port=80 / Connector address=192.168.0.3 port=80 / Connector address=192.168.0.4 port=80 / As long as each BIND event for that service is unique

RE: Why only one Connector per Service?

2005-12-09 Thread Carl Olivier
Oh, and just to be a little more explicit :) You can of course have the same IP of various ports. If you do not specify address the connector will listen on all available Ips on the specified port (which I think is where the confusion came in), so: !-- same IP - different ports -- Connector

Re: Selective auto-deploy of web-apps?

2005-12-09 Thread Michael Hackett
From: Caldarale, Charles R [EMAIL PROTECTED] From: Michael Hackett [mailto:[EMAIL PROTECTED] We want to prompt the user for the database password and boot the database before launching the real application. What user? The user of the web app. In this case, there will only be one

Re: What's the difference between .zip and .exe from download site?

2005-12-09 Thread Seak, Teng-Fong
Caldarale, Charles R wrote: From: Seak, Teng-Fong [mailto:[EMAIL PROTECTED] I only knew that those batches/scripts are mostly for startup and shutdown tomcat. Which files could help debugging easier? Frequently, there's output in the console window that is quite useful when

RE: Tomcat 4.1 hang - maybe in JK connector

2005-12-09 Thread Richard Mixon
I did a bit more research and found the two areas of concern. Would appreciate any comments or insights into how to resolve this. 1) First there were 37 waiting threads in the thread pool. There were and additional 22 that were in Object.wait on a read in the JK code. There was one that was

jk 1.2.15

2005-12-09 Thread Kurt McKain
I'm trying to implement JK 1.2.15 on a Windows Server 2003 box. I'm receiving the following errors in my isapi_redirect.log file. It appears that Tomcat is processing the data, but the data is following to make it back to IIS. [Fri Dec 09 12:30:20 2005] [2948:3184] [error] jk_isapi_plugin.c

RE: Selective auto-deploy of web-apps?

2005-12-09 Thread Michael Hackett
Quoting Caldarale, Charles R [EMAIL PROTECTED]: From: Michael Hackett [mailto:[EMAIL PROTECTED] Subject: Re: Selective auto-deploy of web-apps? Anyway, I appreciate the attempt, but I don't think that solves my problem of controlling the startup of a webapp or servlet from another

Re: Selective auto-deploy of web-apps?

2005-12-09 Thread David Smith
Or IMHO, use a request filter to check for the database and then redirect the use to a not available or out of order page. This can easily happen before any processing starts and the servlet need not be any the wiser. --David Michael Hackett wrote: Quoting Caldarale, Charles R [EMAIL

Re: Connecting Tomcat and Apache using mod_jk and jni (deprecated?) or ajp13

2005-12-09 Thread Bill Barker
Marc Richards [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I have Apache 2.x and Tomcat 5.5 connected using mod_jk ajp13 workers (win32) and running fine. However, under heavy load (using jmeter) I start to get mod_jk errors indicating that the connection is closed and is unable

How to load a class when tomcat starts

2005-12-09 Thread vineesh kumar
Hi all, I need to load a java class when tomcat starts, which will initializes some configuration files and so i can use the fields in the class throught the environment.How can i do this.? Actually I am working on a distributed application, so the configuration files may change frequently but