Tomcat Book Recommendation?

2006-08-08 Thread M. Goodell
approach to Apache / Tomcat development with the emphasis on Tomcat of course. Thanks, M Goodell - Talk is cheap. Use Yahoo! Messenger to make PC-to-Phone calls. Great rates starting at 1ยข/min.

Re: Connector Problems - FIXED!! THANK EVERYONE!!

2006-08-08 Thread M. Goodell
YES! That was it. The following *MUST* be declared outside the directive: LoadModule jk_module modules/mod_jk.so JkWorkersFile conf/workers.properties JkLogFile logs/mod_jk.log JkLogLevel debug As soon as they were moved outside the Directive the mod_jk.log file has this allo

Re: Connector Problems -

2006-08-08 Thread M. Goodell
my document root. An Alias and a JkMount finish up the configuration. # all on one line Alias /jsp-examples "C:/Apache/Tomcat/webapps/jsp-examples" # separate line JkMount /jsp-examples/*.jsp worker1 Hope this helps. /mde/ just my two cents . . . . --- "M. Goodell" wrote

Re: Connector Problems -

2006-08-08 Thread M. Goodell
nf/workers.properties JkLogFile "C:/Program Files/Apache Group/apache-tomcat-5.5.17/logs/mod_jk.log" JkLogLevel debug JkMount /axis ajp13 JkMount /axis/* ajp13 JkMount /servlets-examples ajp13 JkMount /servlets-examples/* ajp13 JkMount /jsp-examples ajp13 JkMount /jsp-examples/* ajp13 JkMo

Re: Connector Problems -

2006-08-08 Thread M. Goodell
e -- 'ajp13' and 'worker1'. Where is the worker 'ajp13' configured? Are you able to successfully get to /axis or /servlet-examples? --David M. Goodell wrote: >Yes, the ajp13 connector is working great. It is configured in server.xml as: > > > enableLooku

Re: Connector Problems -

2006-08-08 Thread M. Goodell
think the error would be much different if Apache couldn't load mod_jk.so. Your Apache config mentions use of a worker named ajp13. Is that one working, and if so, where is it configured? --David M. Goodell wrote: >I used the .so file from the following link: > > http://apache

RE: Connector Problems -

2006-08-08 Thread M. Goodell
ECTED]> wrote: > LoadModule jk_module "C:/Program Files/Apache > Group/Apache2/modules/mod_jk.so" Since you have windows, shouldn't the mod_jk load library be a dll rather than so? I believe you have referenced the incorrect mod_jk. -Original Message- From

Connector Problems -

2006-08-08 Thread M. Goodell
er1 It seems to me, from the log file information, that it simply cannot find the workers.properties file. Also, it looks as though the mod_jk is loading due to Apaches lack of complaining. Any help / direction or chastisment on this would be welcomed. Many thanks! M Goodell