views:

489

answers:

1

I've been trying for days to get Tomcat up and running through IIS via the Jakarta Connector.

I've followed all of Microsoft's instructions -- put the connector .dll in %tomcatdir%\bin\win32\i386\, added the registry entry, added a filter (pointing to the .dll) to the default web site... and yet, any time I try to access a Tomcat web app, I get the "You are not authorized to view this page" error.

Has anyone experienced this? Help!

Thanks, -Dan

+3  A: 

http://archive.apache.org/dist/tomcat/tomcat-connectors/jk/binaries/win32/jk-1.2.14/isapi_redirect-1.2.14.exe

I use this redirect with Tomcat 5.5 and IIS 5 or 6. I haven't tried it with IIS 7.

You have to modify the uriworkermap.properties file to choose which paths to redirect, but besides that it works pretty much straight up. It adds all the registry garbage for you.

Ah, except on IIS 6 you have to add the isapi redirect.dll into its application whitelist.

Frakkle
Thank you!!! So easy. Much appreciated.
DanM
No problem. Follow up if it gives you any trouble, but it should "just work".
Frakkle
newer versions are available, just browse http://archive.apache.org/dist/tomcat/tomcat-connectors/jk/binaries/
Robert Claypool