The issue would appear to be around the Apache configuration or the bridge
between Apache and Tomcat. If your provider is using mod_jk, then the
httpd.conf file will need something along this at the end of section 2
(prior to the virtual hosts section).

  LoadModule jk_module modules/mod_jk13.dll
  JkWorkersFile  "D:/Apache/Tomcat-4.0.4/conf/jk/workers_ajp13.properties"
  JkLogFile      "D:/Apache/Tomcat-4.0.4/logs/mod_jk.log"
  JkLogLevel     error
  JkMount        /*.jsp         ajp13
  JkMount        /examples/* ajp13

I'm not sure what your mount path would look like it is a little difficult
to suggest something, however if I assume that your webapp is /do/* (your
tomcat url would be http://www.x.com:8080/do/index.jsp) then the mount
should be

JkMount      /do/* ajp13

They need to check all of the log files to make sure the httpd.conf is
correct, and that the mod_jk is working correctly. So have them check the
mod_jk.log file.

Hope this helps.

Kenneth.

----- Original Message -----
From: "Rick Reumann" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Monday, June 24, 2002 8:17 AM
Subject: Troubles: struts and Tomcat4 under Apache


> I don't have Apache running locally for me, but my new hosting
> provider has Apache 1.3.24 and Tomcat 4.0.3 and I'm working with
> support trying to get a simple test struts app to work correctly. The
> problem seems to be going through Apache. (Works fine if point
> straight to Tomcat). It doesn't seem to recognize that when I have
> /do/ that Tomcat should handle it. Can someone provide some pointers
> as to what might be wrong? The struts site installation page
> http://jakarta.apache.org/struts/doc-1.0.2/installation.html doesn't
> mention anything about using struts under Tomcat4.0 with Apache.
> Should this combination not work?
>
> Thanks for any feedback
>
> --
>
> Rick
>
> mailto:[EMAIL PROTECTED]
>
>
> --
> To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>
>


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

Reply via email to