A problem with configuring tomcat with apache.

2003-07-28 Thread J. Joe Wang
Dear all, I am trying to configure tomcat 4.0.4 with apache 1.3.26 on redhat 7.2. The installation of apache is a normal one. i.e. ./configure, make, make install. The installation of tomcat 4.0.4 is also a normal one. And I followed the install.txt come with webapp_module. i.e. (1)copy

Re: A problem with configuring tomcat with apache.

2003-07-28 Thread John Turner
Are you sure there is only one LoadModule/AddModule pair for mod_webapp? What is on line 1037 of httpd.conf? John J. Joe Wang wrote: Dear all, I am trying to configure tomcat 4.0.4 with apache 1.3.26 on redhat 7.2. The installation of apache is a normal one. i.e. ./configure, make, make

Re: A problem with configuring tomcat with apache.

2003-07-28 Thread J. Joe Wang
Hi John, Thanks for the reply! Yeah, there is only one LoadModule/AddModule pair for mod_webapp. Here is the LoadModule/AddModule block in my httpd.conf. LoadModule php4_modulelibexec/libphp4.so LoadModule webapp_module libexec/mod_webapp.so AddModule mod_webapp.c The line 1035

Re: A problem with configuring tomcat with apache.

2003-07-28 Thread Eric J. Pinnell
Hi, This is the mod_webapp config that comes with Solaris. I think I ran it for about a day or two. in httpd.conf the last line is: include /etc/apache/tomcat.conf tomcat.conf: LoadModule webapp_modulelibexec/mod_webapp.so AddModule mod_webapp.c WebAppConnectionconn

Re: A problem with configuring tomcat with apache.

2003-07-28 Thread John Turner
Sounds like you have mod_webapp loaded anyway. Is it statically linked or somehing? Sorry, I don't use mod_webapp (and you shouldn't, either! ;) ), so I can't help much beyond the basic Apache-related config stuff like LoadModule and AddModule. John J. Joe Wang wrote: Hi John, Thanks for

Re: A problem with configuring tomcat with apache.

2003-07-28 Thread J. Joe Wang
Hi John, Then what do you think I should use? Thanks, Joe On Mon, 2003-07-28 at 12:17, John Turner wrote: Sounds like you have mod_webapp loaded anyway. Is it statically linked or somehing? Sorry, I don't use mod_webapp (and you shouldn't, either! ;) ), so I can't help much beyond the

Re: A problem with configuring tomcat with apache.

2003-07-28 Thread John Turner
mod_webapp is no longer actively developed, and has some problems that will most likely never be addressed unless someone wants to revive the project. The recommended connectors are JK (mod_jk.so) or JK2 (mod_jk2.so). There are pros and cons to either, which you choose is up to you.