Return-Path: Mailing-List: contact tomcat-user-help@jakarta.apache.org; run by ezmlm Delivered-To: mailing list tomcat-user@jakarta.apache.org Received: (qmail 8065 invoked from network); 7 Dec 2000 01:43:01 -0000 Received: from sea-28-c-34.sea.dsl.cerfnet.com (HELO OLYMPUS.audiotrack.com) (216.148.126.34) by locus.apache.org with SMTP; 7 Dec 2000 01:43:01 -0000 Received: by sea-28-c-34.sea.dsl.cerfnet.com with Internet Mail Service (5.5.2448.0) id ; Wed, 6 Dec 2000 17:47:07 -0800 Message-ID: <63D3ED1B489ED3118F47009027B6BE641D5D4A@sea-28-c-34.sea.dsl.cerfnet.com> From: "Kintzer, Michael" To: "'tomcat-user@jakarta.apache.org'" Subject: RE: 404 error w/ isapi_redirect.dll Date: Wed, 6 Dec 2000 17:47:06 -0800 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain; charset="windows-1252" X-Spam-Rating: locus.apache.org 1.6.2 0/1000/N I realize this topic has been covered nearly two months ago, but all the solutions given here have not worked for my environment. Here are the details: IIS 5.0, W2KPro, Tomcat 3.2 I've configured everything according to the Tomcat-IIS HowTo and confirmed the following are working: -Tomcat hosted jsp/examples work fine (i.e. localhost:8080/) -isapi_redirect.dll has the green arrow -log files are being generated -isapi_redirect.dll is recognizing that it should handle jsp requests as evidenced by the line GET "/jakarta/isapi_redirect.dll" 200 in my SYSTEM32/LogFiles/W3SVC1/ log. -I can browse to the jakarta virtual directory -Anonymous access is enabled and file permissions on the redirect dll are also enabled for Full Control for Everyone. -the uriworkermap.properties file and the -auto file show that the examples context is being served by ajp12 According to the HowTo, "200" implies the jakarta virtual directory is not configured for Execute permissions, but I've checked that and it is. I've rebooted and restarted both WWWService and AdminService, but nothing seems to fix the 404 error. Anybody have an idea for me? Thanks, Michael -----Original Message----- From: Paul FitzPatrick [mailto:cpclvlnk@fitzpatrick.cc] Sent: Monday, October 16, 2000 7:26 AM To: tomcat-user@jakarta.apache.org Subject: RE: 404 error w/ isapi_redirect.dll Stop/Start in the IIS Administrative Tool does not restart the admin service. You have to do this from the control panel or a Dos Prompt like thus : net stop "IIS Admin Service" net start "IIS Admin Service" There are dependant services you may need to restart as well - this is the batch file I use to stop : @ECHO OFF NET STOP "FTP Publishing Service" NET STOP "World Wide Web Publishing Service" NET STOP "IIS Admin Service" In reverse order and replace STOP with START to start them all. -----Original Message----- From: David Young [mailto:dyoung@NetToNetTech.com] Sent: Monday, October 16, 2000 10:11 AM To: tomcat-user@jakarta.apache.org Subject: Re: 404 error w/ isapi_redirect.dll Stop/start did not do it, but rebooting did! > From: Kieran Fitzpatrick > Reply-To: tomcat-user@jakarta.apache.org > Date: Mon, 16 Oct 2000 09:52:55 +1000 > To: "'tomcat-user@jakarta.apache.org'" > Subject: RE: 404 error w/ isapi_redirect.dll > > You might find that stopping and restarting the IIS Admin service via the > Services applet in Control Panel is sufficient to get this working. At > least this seemed to work for me. > > Good luck, > > Kieran > > -----Original Message----- > From: Christian Thomsen [mailto:thomsen@ivx.de] > Sent: Monday, 16 October 2000 6:07 AM > To: tomcat-user@jakarta.apache.org > Subject: Re: 404 error w/ isapi_redirect.dll > > > Hi ! > > I had the same problem myself. I solved it by rebooting the computer (no > kidding !). As I have verified several times, you have to do this when you > change the IIS/Tomcat property files. > > I hope it helps, > > Chris > > > ----- Original Message ----- > From: "David Young" > To: > Sent: Friday, October 13, 2000 4:39 AM > Subject: 404 error w/ isapi_redirect.dll > > >> Hello, >> >> I am trying to get Tomcat working with IIS using the isapi_redirect.dll. I >> followed the How To instructions by Gal Shachor, however when I attempt to >> access http://localhost/examples/, I get a 404 saying it can't find >> /jakarta/isapi_redirect.dll. >> >> - Windows 2000 Professional >> - IIS is running on port 80 >> - Anonymous access is enabled >> - I can browse to http://localhost/jakarta/, so the vdir seems OK >> - /jakarta vdir is set to allow execution >> - Permissions on isapi_redirect.dll allow everyone to exec >> - Tomcat is running fine on port 8080, including /examples >> >> >> >