Return-Path: Delivered-To: apmail-tomcat-users-archive@www.apache.org Received: (qmail 31930 invoked from network); 4 Jan 2006 06:36:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 4 Jan 2006 06:36:08 -0000 Received: (qmail 34448 invoked by uid 500); 4 Jan 2006 06:35:52 -0000 Delivered-To: apmail-tomcat-users-archive@tomcat.apache.org Received: (qmail 34434 invoked by uid 500); 4 Jan 2006 06:35:52 -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 34423 invoked by uid 99); 4 Jan 2006 06:35:52 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Jan 2006 22:35:52 -0800 X-ASF-Spam-Status: No, hits=0.8 required=10.0 tests=MAILTO_TO_SPAM_ADDR,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [63.247.81.238] (HELO tss6.serverconfig.com) (63.247.81.238) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Jan 2006 22:35:51 -0800 Received: from comperfo by tss6.serverconfig.com with local (Exim 4.44) id 1Eu2F8-0007Sf-5V for users@tomcat.apache.org; Wed, 04 Jan 2006 01:35:30 -0500 Received: from 72.13.101.6 ([72.13.101.6]) (SquirrelMail authenticated user billw@perform-soft.com); by perform-soft.com with HTTP; Wed, 4 Jan 2006 01:35:30 -0500 (EST) Message-ID: <2982.72.13.101.6.1136356530.squirrel@72.13.101.6> Date: Wed, 4 Jan 2006 01:35:30 -0500 (EST) Subject: Solution for Tomcat IIS problem From: billw@perform-soft.com To: users@tomcat.apache.org User-Agent: SquirrelMail/1.4.3a X-Mailer: SquirrelMail/1.4.3a MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - tss6.serverconfig.com X-AntiAbuse: Original Domain - tomcat.apache.org X-AntiAbuse: Originator/Caller UID/GID - [32062 32063] / [47 12] X-AntiAbuse: Sender Address Domain - perform-soft.com X-Source: X-Source-Args: X-Source-Dir: X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Tolle, I had the same problem as Paresh below. My conclusion is that the sample workers2.properties file that is distributed does not work. When I changed group=lb to group=lb:lb I was fine. Of course, now that I have gotten this far I just found out that jk2 is no longer supported... so I guess I redeploy using jk. Eternally grateful, Bill From: Tolle Krez [mailto:tk7727@hotmail.com] Sent: Monday, May 03, 2004 8:22 AM To: Paresh Varatkar Subject: Problem with Tomcat5 and IIS5 Hello Paresh, try to use group:lb:lb instead of just group:lb # define the worker [ajp13:localhost:8009] channel=channel.socket:localhost:8009 group=lb:lb [uri:/gf/*] group=lb:lb I hope this helps. -----Original Message----- From: Paresh Varatkar Sent: Thursday, April 29, 2004 8:25 AM To: tomcat-user@jakarta.apache.org Subject: Problem with Tomcat5 and IIS5 Importance: High Hi, I have many times made tomcat to work with iis. This time I am getting HTTP 500 error. I checked my jakarta filter is green but its not producing any log In IIS log I get this. #Date: 2004-04-28 15:16:28 #Fields: date time c-ip cs-username s-ip s-port cs-method cs-uri-stem cs-uri-query \ sc-status cs(User-Agent) 2004-04-28 15:16:28 127.0.0.1 - 127.0.0.1 80 GET \ /jakarta/isapi_redirector2.dll - 500 \ Mozilla/4.0+(compatible;+MSIE+5.5;+Windows+NT+5.0;+T312461;+.NET+CLR+1.0.3705) \ 2004-04-28 15:16:30 127.0.0.1 - 127.0.0.1 80 GET /jakarta/isapi_redirector2.dll - 500 \ Mozilla/4.0+(compatible;+MSIE+5.5;+Windows+NT+5.0;+T312461;+.NET+CLR+1.0.3705) \ 2004-04-28 15:16:31 127.0.0.1 - 127.0.0.1 80 GET /jakarta/isapi_redirector2.dll - 500 \ Mozilla/4.0+(compatible;+MSIE+5.5;+Windows+NT+5.0;+T312461;+.NET+CLR+1.0.3705) Regards Paresh ___________________________________________________________________________ My workers2.properties file is [shm] info=Scoreboard. Requried for reconfiguration and status with multiprocess servers. file=anon # Defines a load balancer named lb. Use even if you only have one machine. [lb:lb] # Example socket channel, override port and host. [channel.socket:localhost:8009] port=8009 host=127.0.01 # define the worker [ajp13:localhost:8009] channel=channel.socket:localhost:8009 group=lb # Map the Tomcat examples webapp to the Web server uri space [uri:/gf/*] group=lb [status:] info=Status worker, displays runtime information [uri:/jkstatus/*] info=The Tomcat /jkstatus handler group=status: __________________________________________________________________________ My server.xml connector has(I tried both redirecting to 8080 as wellas 8443, both \ gives same error) ___________________________________________________________________________________ My Registry property are extensionUri=/jakarta/isapi_redirector2.dll serverRoot=C:\Tomcat logLevel=DEBUG workersFile=C:\Tomcat\conf\workers2.properties worker_mount_file=C:\Tomcat\conf\uriworkermap.properties (I know this is not needed \ but removing this does not make any change). \ ______________________________________________________________________________________ \ --------------------------------------------------------------------- To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org For additional commands, e-mail: tomcat-user-help@jakarta.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org For additional commands, e-mail: users-help@tomcat.apache.org