I have got Apache 4.0.3 working with Apache 2. It was very simple. I added
the mod_jk.dll to my modules dir in my apache intallation.  Then i added
the following to my http.conf .

### Section EXTRA: Tomcat-Binding
#
# Using mod_jk.dll to redirect dynamic calls to Tomcat
<IfModule !mod_jk.c>
LoadModule jk_module modules/mod_jk.dll
</IfModule>
JkWorkersFile "c:/Apache Tomcat 4.0/conf/workers.properties"
JkLogFile "c:/Apache Tomcat 4.0/logs/mod_jk.log"
JkMount /servlet/* ajp13
JkMount /*.jsp ajp13
JkMount /soap/* ajp13

And create the workers.properties file in Tomcat's conf dir with following
in.

workers.tomcat_home=c:\Apache Tomcat 4.0
workers.java_home=c:\jdk1.3.1_02
ps=\
worker.list=ajp13
worker.ajp13.port=8009
worker.ajp13.host=localhost
worker.ajp13.type=ajp13
worker.ajp13.lbfactor=1

and that was it ;-)
----------------------------------------------------------------
The information transmitted is intended only for the person or entity to
which it is addressed and may contain confidential and/or privileged
material.  Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by persons or
entities other than the intended recipient is prohibited.   If you received
this in error, please contact the sender and delete the material from any
computer.


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to