I have the default website in IIS working using isapi_redirect and the files below, but I want to run multiple sites in IIS and have them all use Tomcat as a processor.
My uriworkermap.properties file
-----------------------------------------
/|*=worker1
My workers.properties file
------------------------------------------
# Define 1 real worker using ajp13
worker.list=worker1
# Set properties for worker1 (ajp13)
worker.worker1.type=ajp13
worker.worker1.host=localhost
worker.worker1.port=8009
My isapi_redirect.properties file
-------------------------------------------------
# Configuration file for the Jakarta ISAPI Redirector
# The path to the ISAPI Redirector Extension, relative to the website
# This must be in a virtual directory with execute privileges
extension_uri=/jakarta/isapi_redirect.dll
# Full path to the log file for the ISAPI Redirector
log_file=e:\tomcat6\logs\isapi_redirect.log
# Log level (debug, info, warn, error or trace)
log_level=warn
# Full path to the workers.properties file
worker_file=e:\tomcat6\conf\workers.properties
# Full path to the uriworkermap.properties file
worker_mount_file=e:\tomcat6\conf\uriworkermap.properties