RE: Loadbalancing with mod_jk2

2003-12-18 Thread Scott, Sean
Try this. -sean [lb:cluster] debug=0 disabled=0 [ajp13:localhost:8009] group=cluster [ajp13:localhost:8010] group=cluster [uri:/foobar/*] group=cluster -Original Message- From: Johann Uhrmann [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 17, 2003 9:33 AM To: Tomcat Users

RE: Apache-Tomcat connectors... why??

2003-12-17 Thread Scott, Sean
If your application is using the HTTPSession, then you will want apache to stick you to the same instance of tomcat on the backend for all requests for that session. mod_jk and mod_jk2 both support this. Forgive me if I am wrong, but I dont think mod_proxy will do this for you. -sean

RE: ThreadPool logFull

2003-12-03 Thread Scott, Sean
-Original Message- From: L.Karam [mailto:[EMAIL PROTECTED] Sent: Thursday, December 04, 2003 10:53 AM To: Tomcat Users List Subject: ThreadPool logFull I have Tomcat 4.1.24 + IIS 5 + JK2. After Tomcat had been running for about 22 hours, Tomcat stop responding to HTTP request.

RE: ThreadPool logFull

2003-12-03 Thread Scott, Sean
-Original Message- From: L.Karam [mailto:[EMAIL PROTECTED] Sent: Thursday, December 04, 2003 11:18 AM To: Tomcat Users List Subject: RE: ThreadPool logFull My workers2.properties don't show me nothing about max_connections.

RE: Tomcat FAQs on Wiki - mod_jk2 howto

2003-12-02 Thread Scott, Sean
In what cases is step 5 required? I am currently running without jk2.properties at all. Can you explain what the purpose of jk2.properties is and when it should be used? What is the handler list used for? Thanks -sean -Original Message- From: Nikola Milutinovic [mailto:[EMAIL

mod_jk2 Error message leaving me puzzled! (Bug?)

2003-11-21 Thread Scott, Sean
My apache error log is filled with the error messages below. Has anyone else encountered these error messages. If so, have you figured out why these messages occur, and how to fix them? The page seems to come back and display correctly, but I would like to eliminate the errors. Apache/2.0.46

RE: Tomcat not sending session cookies to IE

2003-03-14 Thread Scott, Sean
If the domain and path of the cookie do not map correctly to your web application, the browser will not send it. I like to use Mozilla when troubleshooting cookie problems because it allows you to look at the cookies and make sure they are as you expected. -sean -Original Message- From:

RE: Loading dll for servlets

2003-03-14 Thread Scott, Sean
In my experience, I have needed to load the class that loads the shared library into the bootstrap classloader. This was with jdk1.3.1. I seem to recall that the shared library can be loaded only 1 time by the JVM, if the class that loads the shared library exists in a webapp it will try to load

RE: [4.1.18] Startup Servlets Load Twice???

2003-03-14 Thread Scott, Sean
Check the manager app to see if your app might have been deployed twice -Original Message- From: Gavin, Rick [mailto:[EMAIL PROTECTED] Sent: Friday, March 14, 2003 11:40 AM To: Tomcat Users List Subject: RE: [4.1.18] Startup Servlets Load Twice??? Hello, I checked, i have neither of

RE: [4.1.18] Startup Servlets Load Twice???

2003-03-14 Thread Scott, Sean
. What is the correct way to define an app as the root context. Thanks, Rick -Original Message- From: Scott, Sean [mailto:[EMAIL PROTECTED] Sent: Friday, March 14, 2003 11:03 AM To: 'Tomcat Users List' Subject: RE: [4.1.18] Startup Servlets Load Twice??? Check the manager app to see if your

RE: How to listen for shutdown

2003-03-07 Thread Scott, Sean
Hey Frank, I also thought that my ServletContextListener was being invoked 2 times, but in reality Tomcat was actually deploying me application 2 times. I posted a question regarding this a while back and never resolved it. When I try to set the context path to something other than the name of my

RE: Tomcat on WinXP

2003-03-04 Thread Scott, Sean
I encountered this when I wrote my own start scripts and I failed to add tools.jar to my CLASSPATH. -sean -Original Message- From: Denise Mangano [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 1:38 PM To: 'Tomcat Users List' Subject: RE: Tomcat on WinXP I am reading these

RE: Tomcat on WinXP

2003-03-04 Thread Scott, Sean
I dont believe that tomcat is doing an exec on javac, I think that it uses the java interface to javac. Hence my comment about tools.jar being in the classpath. If you look at the scripts that came with tomcat (setclasspath.sh) you will notice the line: # Set standard CLASSPATH

RE: Is there a common lib between webapps, but not instances?

2003-02-28 Thread Scott, Sean
You can create a separate CATALINA_BASE for each instance and place the common libraries in the $CATALINA_BASE/shared directory. ( This works in 4.1.18, but I am not sure about prior versions ) -sean -Original Message- From: Frank Diakovasilis [mailto:[EMAIL PROTECTED] Sent: Friday,

RE: Tomcat WAR expansion

2003-02-28 Thread Scott, Sean
I am seeing this behavior too, but I am not sure of the benefit of expanding the WAR. Does it run faster? -sean -Original Message- From: Tomcat [mailto:[EMAIL PROTECTED] Sent: Friday, February 28, 2003 2:55 AM To: [EMAIL PROTECTED] Subject: Tomcat WAR expansion Hi, When i place a

RE: Tomcat WAR expansion

2003-02-28 Thread Scott, Sean
to be expanded in order to run. Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He Knows What He Is Doing -Original Message- From: Scott, Sean [mailto:[EMAIL PROTECTED] Sent: February 28, 2003 11:02 AM To: 'Tomcat Users List' Subject: RE: Tomcat WAR expansion I am seeing

Problem with double deployment

2003-02-28 Thread Scott, Sean
I have a problem where if I put a WAR file in the webapps directory and try to assign it to the default context in the server.xml file the app is deployed 2 times. Once at the default context, and the other at the war name. My server.xml contains Context path= docBase=myapp.war/ When tomcat

RE: Problem with double deployment

2003-02-28 Thread Scott, Sean
of the differences is that ROOT is not a WAR, and also look into the autoDeploy WAR files property, since this will cause war files to deploy automatically. Filip -Original Message- From: Scott, Sean [mailto:[EMAIL PROTECTED] Sent: Friday, February 28, 2003 12:13 PM To: 'Tomcat Users List' Subject