Re: Configuring Apache with Tomcat using mod_jk connector

2008-06-09 Thread Rainer Jung
Caldarale, Charles R schrieb: From: Thanuja Danda [mailto:[EMAIL PROTECTED] Subject: Re: Configuring Apache with Tomcat using mod_jk connector I removed the workers.java_home and workers.tomcat_home from workers.properties. I was just following the instructions from http://tomcat.apache.org

Re: Configuring Apache with Tomcat using mod_jk connector

2008-06-07 Thread Martin
do you have the JKMount directive in your %APACHE_HOME%/conf/httpd.conf ? # send all requests ending in .jsp to ajp13 JkMount /*.jsp ajp13 http://tomcat.apache.org/connectors-doc/webserver_howto/apache.html HTH Martin- - Original Message - From: Thanuja Danda [EMAIL PROTECTED] To:

Re: Configuring Apache with Tomcat using mod_jk connector

2008-06-07 Thread Thanuja Danda
Hi Martin, Thanks for the reply.I do have a JkMount in $APACHE_HOME/conf/httpd.conf *JkMount /testapp/*.jsp worker1* Where *worker1* is a of type ajp13 and is configured in workers.properties as: *worker.worker1.type=ajp13* Please see below in the configuration. I highlighted below (in

Re: Configuring Apache with Tomcat using mod_jk connector

2008-06-07 Thread David Smith
*JkMount /testapp/*.jsp worker1 Maybe it's my mail client -- could you verify there is *not* an asterisk before JkMount in the line above I copied from your config below? Otherwise, you don't need workers.java_home or workers.tomcat_home -- mod_jk doesn't care where your tomcat home or jva

Re: Configuring Apache with Tomcat using mod_jk connector

2008-06-07 Thread Thanuja Danda
Hi David, I confirm that there is no asterisk before JkMount. I removed the workers.java_home and workers.tomcat_home from workers.properties. I was just following the instructions from http://tomcat.apache.org/connectors-doc/webserver_howto/apache.html. mtte0303 is the hostname of the machine.

Re: Configuring Apache with Tomcat using mod_jk connector

2008-06-07 Thread David Smith
Believe it or not that's progress.. Apache and mod_jk are actually attempting to sent the request upstream now. We just need to figure out what's going on with tomcat that it's not responding correctly. Could you post relevent parts of your server.xml -- preferably without all the comments

Re: Configuring Apache with Tomcat using mod_jk connector

2008-06-07 Thread Thanuja Danda
Yeah I looks like we are making some progress. Thanks for your help. I checked the log files on both Apache and Tomcat. It look like the request is not reaching Tomcat, as there are no log messages on Tomcat about the request. If there is proxy server present, do we need configure anything on

Re: Configuring Apache with Tomcat using mod_jk connector

2008-06-07 Thread David Smith
Your connector looks like it needs a protocol attribute to define it as AJP. Add protocol=AJP/1.3 to the Connector ... / element. If you still need a standard http port on tomcat, add a second Connector ... / with a different port and a protocol attribute of HTTP/1.1 --David Thanuja Danda

Re: Configuring Apache with Tomcat using mod_jk connector

2008-06-07 Thread Thanuja Danda
Thanks a lot David !!!. It's working. Thank you for your help. Regards, Thanuja On 6/7/08, David Smith [EMAIL PROTECTED] wrote: Your connector looks like it needs a protocol attribute to define it as AJP. Add protocol=AJP/1.3 to the Connector ... / element. If you still need a standard

Re: Configuring Apache with Tomcat using mod_jk connector

2008-06-07 Thread Johnny Kewl
- Original Message - From: Thanuja Danda [EMAIL PROTECTED] To: users@tomcat.apache.org Sent: Saturday, June 07, 2008 4:27 PM Subject: Configuring Apache with Tomcat using mod_jk connector Hi All, I have an issue configuring Apache/2.2.8 (True 64 Unix) integration with Tomcat 5.0.28

RE: Configuring Apache with Tomcat using mod_jk connector

2008-06-07 Thread Caldarale, Charles R
From: Thanuja Danda [mailto:[EMAIL PROTECTED] Subject: Re: Configuring Apache with Tomcat using mod_jk connector I removed the workers.java_home and workers.tomcat_home from workers.properties. I was just following the instructions from http://tomcat.apache.org/connectors-doc/webserver_howto