]>
This document explains how to set up IIS to cooperate with Tomcat.
Normally IIS can not execute Servlets and Java Server Pages (JSPs),
configuring IIS to use the JK ISAPI redirector plugin will let IIS send servlet and
JSP requests to Tomcat (and this way, serve them to clients).
It is recommended that you also read the
Workers HowTo document
to learn how to setup the working entities between your web server and Tomcat Engines.
For more detailed configuration information consult the Reference Guide for
workers.properties,
uriworkermap
and IIS.
${tomcat_home} is the root directory of tomcat.
Your Tomcat installation should have the following subdirectories:
In all the examples in this document ${tomcat_home} will be c:\tomcat. A worker is defined to be a tomcat process that accepts work from the IIS server.
The IIS-Tomcat redirector was developed and tested on:
The redirector uses ajp12 and ajp13 to send requests to the Tomcat containers. There is also an option to use Tomcat in process, more about the in-process mode can be found in the in process howto.
There are extra steps you need to take for configuring Tomcat with IIS 5 and 6. Please see the appropriate links from Tomcat Useful Links.
There is a known bug in IIS that may result in incomplete log messages. See bug 45769 for further details.
The ajp12 protocol is only available in Tomcat 3.2.x and 3.3.x.
The ajp12 has been deprecated with Tomcat 3.3.x and you should use instead ajp13 which is the only ajp protocol known by Tomcat 4.x, 5 and 5.5 and Tomcat 6.
Of course Tomcat 3.2.x and 3.3.x also support ajp13 protocol.
Others servlet engines such as jetty have support for ajp13 protocol
A pre-built version of the ISAPI redirector server plugin, isapi_redirect.dll, is available under the win32/i386 directory of tomcat-connectors distribution. For those using Netscape as your browser, try downloading a zip version of the file, if available. There can be problems using Netscape to download DLL files. You can also build a copy locally from the source present in tomcat-connectors distribution. The Tomcat redirector requires three entities:
The installation includes the following parts:
In this document I will assume that isapi_redirect.dll is placed in c:\tomcat\bin\win32\i386\isapi_redirect.dll and that the properties files which you created are in c:\tomcat\conf.
That's all, you should now start Tomcat and ask IIS to serve you the /examples context. Try http://localhost/examples/jsp/index.html for example and execute some of the JSP examples.
If this does not work successfully, refer to the Troubleshooting section below for help on correcting the problem.
The examples context is useful for verifying your installation, but you will also need to add your own contexts. Adding a new context requires two operations:
Adding a context to the ISAPI redirector is simple, all you need to do is to edit your uriworkermap.properties and to add a line that looks like:
Workers and their name are defined in workers.properties, by default workers.properties comes with a single pre-configured worker named "defworker" so you can use it. As an example, if you want to add a context named "shop", the line that you should add to uriworkermap.properties will be:
The above should be all you need for IIS to pass through to Tomcat any request for any URI which corresponds to a Tomcat context (webapp).
If your webiste is very busy (more than 100 requests/second, or more than 100 simultaneous client connections), it might sometimes be desirable to have IIS serve static content (html, gif, jpeg etc.) directly, even if these files are part of a context served by Tomcat. Allowing IIS to serve such files directly may avoid the small overhead consisting of passing the request to Tomcat via the redirector, and may free up Tomcat somewhat, by using it only to process requests that only Tomcat can handle (e.g. requests to JSP pages and java servlets).
For example, consider the html and gif files in the examples context : you could serve these files directly with IIS; there is no need to serve them from the Tomcat process.
Making IIS serve static files that are part of the Tomcat contexts requires the following:
Adding a Tomcat context to IIS requires the addition of a new IIS virtual directory that covers the Tomcat context. For example adding a /example IIS virtual directory that covers the c:\tomcat\webapps\examples directory.
Configuring the redirector is somewhat harder, you will need to specify the exact
URL-Path pattern(s) which you want Tomcat to handle (usually only JSP files and servlets).
This requires a change to the uriworkermap.properties :
As you can see the second configuration is more explicit, it actually instruct the redirector to redirect only requests to resources under /examples/servlet/ and resources under /examples/ whose name ends with .jsp.
You can even be more explicit and provide lines such as:
that instructs the redirector to redirect all requests whose URL-path matches the leading string "/example/servletname" to the worker named defworker.
Once again, be aware that by allowing IIS to access the content of your Tomcat context directly, you are potentially bypassing Tomcat's protection of that content. You should thus make sure to protect this content at the IIS level if needed, by using the corresponding IIS management console functions.
In particular, each servlet application (context) has a special directory named WEB-INF, which contains sensitive configuration data and Java classes, and which should always be kept hidden from web users. Using the IIS management console it is possible to protect the WEB-INF directory from user access, but considering that this is a general requirement, and considering that it is easy to forget to implement this protection at the IIS level, the redirector plugin does it automatically for you, and it will reject any request which contains WEB-INF in its URL-path.
Sometimes you may want to serve different contexts with different Tomcat processes (for example to spread the load among different machines). To achieve such a goal you will need to define several workers and assign each context to its own worker.
Defining additional workers is done in the workers.properties file. This file includes two types of entries:
The above example defined two workers, now we can use these workers to serve two different contexts
each with its own worker:
As you can see the examples context is served by worker1 while the webpages context is served by worker2.
More information on using and configuring workers in the Workers HowTo and in the worker.properties configuration reference.
The redirector was developed using Visual C++ Ver.6.0, so having this environment is a prerequisite if you want to perform a custom build. You should also have the IIS developer SDK. The steps that you need to take are:
If msdev is not in your path, enter the full path to msdev.exe. This will build both release and debug versions of the redirector plugin. An alternative will be to open the isapi workspace file (isapi.dsw) in msdev and build it using the build menu.
It is easy to have the ISAPI redirector not work the first time you try to install it.
If this happens to you, here are some steps to follow to try to correct the problem.
These steps aren't guaranteed to cover all possible problems, but they should help find the typical mistakes.
If you make any corrections during these steps, restart the IIS service as described above in the last step of the installation, then retry the step.
To enable error tracking, make sure web site activity is being logged. For PWS 4.0 make sure "Save Web Site Activity Log" is checked in the Advanced Options of the Personal Web Manager.
Note: These steps assume your worker_mount_file setting points to an unmodified copy of the
uriworkermap.properties file.
Results may be misleading if worker_mount_file points to a modified uriworkermap.properties
or the uriworkermap.properties-auto file.
It is also assumed that the "/examples" context works correctly if you access Tomcat directly.
Start the IIS service and Tomcat.
Check for the presence of the ISAPI redirector log file you specified in the log_file setting. If not found, verify the following:
Invoke the URL http://localhost/examples/jsp/index.html in your browser. Case is important in Tomcat. The characters following "localhost" in the URL must be lower case. If the page fails to appear, stop the IIS service (required to view the IIS log file). Then examine the last line in the IIS log file in found in SYSTEM/LogFiles/W3SVC1 :
If the last line contains:
then the ISAPI redirector is not recognising that it should be handling requests for the "/examples" context. Check the following:
If the last line contains something like:
then the ISAPI redirector is recognising that it should handle the request, but is not successful at getting Tomcat to service the request.
You should check the HTTP error code following GET "/..." :
If the above settings are correct, the index.html page should appear in your browser. You should also be able to click the Execute links to execute the JSP examples.
Start the World Wide Web Publishing Service and Tomcat.
Check for the presence of the ISAPI redirector log file you specified in the log_file setting. If not found, check the following:
Check the tomcat filter you added and make sure its status shows a green upward-pointing arrow. If not, check the following:
Invoke the URL http://localhost/examples/jsp/index.html in your browser. Case is important in Tomcat. The characters following "localhost" in the URL must be lower case. If the page fails to appear, examine the last line in the IIS server log file in found in SYSTEM32/LogFiles/W3SVC1.
The last line should contain something like: GET "/jakarta/isapi_redirect.dll HTTP1.1", which indicates the ISAPI redirector is recognising that it should handle the request.
You should check the HTTP error code following GET "/..." :
If the above settings are correct, the index.html page should appear in your browser. You should also be able to click the Execute links to execute the JSP examples.