Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Tomcat IIS Connector problem - please help

Status
Not open for further replies.

IlyaF

Programmer
Feb 7, 2005
1
US
Hi,

I have been trying to run my (or any) JSP application from IIS using the Tomcat connectors following these instructions:


For instance, when I try to run I get the following error in the log:

HttpExtensionProc::jk_isapi_plugin.c (920): could not get a worker for name ajp13

I don't understand why it's trying to look for a worker named ajp13 when the only worker I specified is ajp13w.


I am using: IIS5, Windows XP SP2, Tomcat 5.0.28, ISAP-Redirect 1.2.8

I am trying to at least get the examples that come with Tomcat running. Here are my config files:

workers.properties:

# workers.properties.minimal -
#
# This file provides minimal jk configuration properties needed to
# connect to Tomcat.
#
# The workers that jk should create and work with
#
worker.list=ajp13w


#
# Defining a worker named ajp13w and of type ajp13
# Note that the name and the type do not have to match.
#
worker.ajp13w.type=ajp13
worker.ajp13w.host=localhost
worker.ajp13w.port=8009


uriworkermap.properties:

# uriworker.properties -
#
# This file provides sample mappings for example
# ajp13w worker defined in workermap.properties.minimal

/jsp-examples/*=ajp13w


# Now filter out all .jpeg files inside that context
# For no mapping the url has to start with exclamation (!)
#!/jsp-examples/*.jpeg=ajp13w

I placed isapi_redirect.dll in tomcat/bin as documented and I placed the above .properties file into tomcat/conf. I set all the variables in the registry, added the filter in IIS Administation Console, etc., so I have no idea why this is happening.

Thanks,
Ilya
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top