Hello, Can anyone guide me in the right direction with my issue.
Windows Server 2003, IIS 6.0, tomcat-connector 1.2.8, and Tomcat 5.0.16. I have been tasked to do the following. To get two separate Tomcat server instances running on the same host independent of each other and working off of the same IIS server (compliments of the Tomcat-Connector, and ISAPI-Filter). Getting the two servers up and running together is the easy part, and has already been achieved. They both have unique ports, and IP addresses from each other.. MY issue is the isapi filter. The "workers.properties.minimal" uses 8009 for "ajp13", and 'localhost' worker.list=ajp13w worker.ajp13w.type=ajp13 worker.ajp13w.host=localhost worker.ajp13w.port=8009 There has to be some information out there that will guide you to create a custom "workers.properties.minimal" file. One of my two Tomcat servers has port 8009 assigned, and the other is using port 8109. I am assuming that I was correct on thinking this port needed to be unique from the other Tomcat server on the host? I tried to do the following, and it did not work. worker.list=ajp13w worker.ajp13w.type=ajp13 worker.ajp13w.host=192.168.0.1 worker.ajp13w.port=8009 worker.list=ajp13w2 worker.ajp13w2.type=ajp13 worker.ajp13w2.host=192.168.0.2 worker.ajp13w2.port=8109 ..and then in my "uriworker.properties" file /servlets-examples/*=ajp13w /jsp-examples/*=ajp13w2 I thought this would work, but clearly I am looking at this from the wrong angle. Can someone please guide me to where I can get the information to either re-write custom "workers.properties.minimal" and "uriworker.properties" files.. or what is it that I am doing wrong here. -thx *d03*