You didn't have to change workers.properties at all.
It works like this: 1. map request URI, if it fits a JkMount statement, check protocol 2. if protocol = "ajp13" then JK (eg. ajp12 = JServ) 3. if JK look for workers.properties file 4. if found, use connection information to make connection So, you should have a line like this in httpd.conf: JkMount /examples/servlets/* ajp13 And a few lines like this in workers.properties: worker.list=some-name worker.some-name.port=8009 worker.some-name.host=your.host.com worker.some-name.type=ajp13 Believe me, it works as Jake posted...many, many people have working configurations just like that. John > -----Original Message----- > From: Aryeh Katz [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, October 15, 2002 1:17 PM > To: [EMAIL PROTECTED] > Subject: Re: servlet mapping help > > > > Hello Aryeh, > > > > The proper syntax is: > > > > JkMount /examples/servlets/* ajp13 > > > > You define the protocol, not a worker after the mount pattern. > This did not help matters. Even after changing httpd.conf and > workers.properties, I get the same behavior. > Just one question. Can you point me to documentation that says it's > the protocol, not the worker? The web page > http://jakarta.apache.org/tomcat/tomcat-4.1- > doc/jk2/jk/aphowto.html#mod_jk%20Directives seems to imply it's the > worker, along with the mod_jk comments (lines 660 and 1412 in v > 4.0.6), that state it's a worker. Thanks for your help. > Aryeh > > > Jake > > >Tuesday, October 15, 2002, 11:03:01 AM, you wrote: > > AK> > I'm trying > to integrate mod_jk and tomcat. > AK> My httpd.conf file has the > following mapping > > AK> JkMount /examples/servlets/* worker1 > > > AK> > and I see the following in my jk log file (at debug) > > AK> [Tue Oct > 15 11:52:17 2002] [jk_uri_worker_map.c (321)]: Into -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
