Re: Communication between Apache an Tomcat

2005-12-09 Thread Mirek Kopriva
What if you do JkMount /* ajp13 This way you should be able to access everything. Mirek On 12/8/05, Mladen Turk [EMAIL PROTECTED] wrote: marju jalloh wrote: JkMount /servlet/* ajp13 This might help: JkMount /*/servlet/* ajp13 Regards, Mladen.

Communication between Apache an Tomcat

2005-12-08 Thread marju jalloh
Hi everyone, I cannot access my servlet from Apache but I can access my jsp.I am using Apache 1.3.33, jk_mod1.3 en Tomcat 4.1.27 on Linux (Debian Serge).Tomcat is running and I can access all my servlets and jsp via port 8080.Apache is also running.I can access all my jsp via Apache

Re: Communication between Apache an Tomcat

2005-12-08 Thread Mirek Kopriva
Hi, Looks like it's the configuration of mod_jk in apache. Not sure what is wrong (If you'd atach the configuration files it would be easier to help you). But my guess is the problem is setting of JkMount directive. looks like you have: 'JkMount /*.jsp worker' only while you should have: JkMount

Re: Communication between Apache an Tomcat

2005-12-08 Thread marju jalloh
Sorry for the long Httpd.conf file.This is the jk_mod section in the Httpd.config file IfModule mod_jk.c JkWorkersFile /etc/tomcat4/jk/workers.properties JkLogFile /var/log/apache/mod_jk.log JkLogLevel info JkMount /*.jsp ajp13 JkMount /servlet/* ajp13

Re: Communication between Apache an Tomcat

2005-12-08 Thread marju jalloh
Thanks Mirek it helps and save from another 100 hr of googling Byfour marju jalloh [EMAIL PROTECTED] wrote: Sorry for the long Httpd.conf file.This is the jk_mod section in the Httpd.config file JkWorkersFile /etc/tomcat4/jk/workers.properties JkLogFile

Re: Communication between Apache an Tomcat

2005-12-08 Thread Mladen Turk
marju jalloh wrote: JkMount /servlet/* ajp13 This might help: JkMount /*/servlet/* ajp13 Regards, Mladen. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]