Here is what I'm trying to do... From the outside, the IP goes to a WEB server that has IIS and tomcat connector on it, then the tomcat connector sends it back to the APP server that has the actual Tomcat running. On the tomcat we have 2 seperate instances of tomcat running. By seperate instances I mean 2 different tomcat 5.5 directories that have been renames. We did it this way because one of the instances we will have to restart once, or twice per month for updates, the other pretty much stays as is. One instance is our corporate website to the outside, the other instance is a web portal with a sign-in. The corporate instance runs out of the ROOT directory, the web portal runs out of a directory names PPA.
Here is my uriworker.properties file
/ppa|/*=worker1
/*=worker2
!/ppa|/*=worker2
workers.properties
workers.tomcat_home=C:\PPA
workers.tomcat_home=C:\worker2 (I have one of these two commented out depending what conf. folder it is in on the APP server)
works.java_home=c:\program files\java\jdk1.6.0_07
worker.list=worker1,worker2
worker.worker1.host=ip address
worker.worker1.port=8040
worker.worker1.type=ajp13
worker.worker2.host=ip address
worker.worker2.port=8009
worker.worker2.type=ajp13
I can get these to work one at a time fine, when I put them together I can only get the corparte site which is in ROOT to come up fine, the other one I get a:
Page cannot be found HTTP error 404.
Anyone have any suggestions?