Return-Path: Delivered-To: apmail-tomcat-users-archive@www.apache.org Received: (qmail 65025 invoked from network); 20 Aug 2008 15:11:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 Aug 2008 15:11:40 -0000 Received: (qmail 6357 invoked by uid 500); 20 Aug 2008 15:11:27 -0000 Delivered-To: apmail-tomcat-users-archive@tomcat.apache.org Received: (qmail 6335 invoked by uid 500); 20 Aug 2008 15:11:27 -0000 Mailing-List: contact users-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Users List" Delivered-To: mailing list users@tomcat.apache.org Received: (qmail 6324 invoked by uid 99); 20 Aug 2008 15:11:27 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Aug 2008 08:11:27 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,NORMAL_HTTP_TO_IP,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of doepain@gmail.com designates 209.85.134.184 as permitted sender) Received: from [209.85.134.184] (HELO mu-out-0910.google.com) (209.85.134.184) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Aug 2008 15:10:29 +0000 Received: by mu-out-0910.google.com with SMTP id w9so374853mue.4 for ; Wed, 20 Aug 2008 08:10:40 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:reply-to :to:subject:mime-version:content-type; bh=EFLxGrAlp/UdG5pOC54PyGLmf2DbZx6FByhagbcYUVA=; b=JQsuwWNKcW3LEi1QF/GcnfvPa0GvAW4G/WTIhG46O04KMqFYsC4fr9yspho+eVy8bZ 4Z8LZpxlozTUvqE35DTjZ6pQ/GHAJ8/lc3IJuG7ZvA/lKFdUkZCGW190iPU1OeTrN1T/ nJ6ZcH1sap8J+JnPgK2MOFnk+ouqYumB7I83M= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:reply-to:to:subject:mime-version:content-type; b=sA7bVqPaMuEhtsAfEEf24mN/mCrX6GEe4Y2aeXfgeDlQ5p59GFJKpl5Ezq7qMbZYGk r81ENcCrlyn9aKFP4E5Hbl2GPMBea5kMXXWiRhRnQqvTHAQdGoeCWA/zOHR5WcSvn6QY AC2pDNg+OkdDnnXTQb+njyigNVVILlwLBs9iY= Received: by 10.103.17.10 with SMTP id u10mr161975mui.76.1219245039389; Wed, 20 Aug 2008 08:10:39 -0700 (PDT) Received: by 10.103.49.4 with HTTP; Wed, 20 Aug 2008 08:10:39 -0700 (PDT) Message-ID: Date: Wed, 20 Aug 2008 11:10:39 -0400 From: dOE Reply-To: doepain@gmail.com To: "Tomcat User-List" Subject: Dual-Independent Tomcat servers, on Single Win32 host sharing IIS server. MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_53916_11580381.1219245039394" X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_53916_11580381.1219245039394 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline 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* ------=_Part_53916_11580381.1219245039394--