On Tue, 20 Aug 2002, Chetan Sarva wrote: > > > > Looks fine to me. > > > > The only other things I can suggest are: > > > > 1. it's something going on with apache 1.3.20 (unlikely) or is the ".20" a > > typo and you are using ".26"? > > I am indeed using 1.3.26 (the subject line is left from the original post). > > > 2. what are the contents of mod_jk.log when you ask for > > http://localhost/examples/servlet/HelloWorldExample ? > > mod_jk.log is 0 bytes. Apache's error_log comes up with more 404s: > [Tue Aug 20 11:55:35 2002] [error] [client 192.168.1.53] File does not > exist: /usr/local/apache/htdocs/examples/jsp/snp/snoop.jsp > [Tue Aug 20 11:55:50 2002] [error] [client 192.168.1.53] File does not > exist: /usr/local/apache/htdocs/examples/servlet/HelloWorldExample [ ... ]
This means that Apache is not trying to forward that URL to Tomcat. To me, this means you have a problem with your JkMount directives (like that they don't exist :-). That is, you should have something like this somewhere (perhaps via an Include) in your httpd.conf file: JkMount /examples ajp13 JkMount /examples/* ajp13 Milt Epstein Research Programmer Systems and Technology Services (STS) Campus Information Technologies and Educational Services (CITES) University of Illinois at Urbana-Champaign (UIUC) [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
