You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Ratnakar Malla <do...@yahoo.co.in> on 2001/02/17 00:30:26 UTC

Forwarding Servlet/JSP Request to Tomcat from Apache

Hi All,
  After much hair pulling,I have been successful in
installing tomcat with Apache Server. Now the Apache
Server , registers , the JServ extensions. however,
when i try to access the example servlets in the
Tomcat distribution i get the "File Not Found Error".
I am enclosing , here the error logs and the Apache
config file for Tomcat.
Can someone please help me?
Thanx in Advance,
Bye,
Ratnakar

Apache Log Files:

*** This is the access Log **********
127.0.0.1 - - [16/Feb/2001:17:16:19 -0600] "GET
/examples/servlet/HelloWorldExample HTTP/1.0" 500 590
****************************************

***** This is the error log ********
[Fri Feb 16 17:16:06 2001] [alert] Apache.exe: Could
not determine the server's fully qualified domain
name, using 127.0.0.1 for ServerName

************************************

********* this is the mod_jserv log *********
[16/02/2001 23:16:19:587] (EMERGENCY) ajp12: can not
connect to host 127.0.0.1:8007
[16/02/2001 23:16:19:587] (EMERGENCY) ajp12:
connection fail
[16/02/2001 23:16:19:587] (ERROR) an error returned
handling request via protocol "ajpv12"

********************************************

************ A part of Apache Http.config ******

######################################################################
 #              Apache-Tomcat Smart Context
Redirection               #

######################################################################
 LoadModule jserv_module modules/ApacheModuleJServ.dll
 <IfModule mod_jserv.c>
 ApJServManual on
 ApJServDefaultProtocol ajpv12
 ApJServSecretKey DISABLED
 ApJServMountCopy on
 ApJServLogLevel notice

 ApJServDefaultHost localhost
 ApJServDefaultPort 8007

 #
 # Mounting a single smart context:
 #
 # (1) Make Apache know about the context location.
 Alias /examples
C:\jakarta-tomcat-4.0\webapps\examples
 # (2) Optional, customize Apache context service.
 <Directory "C:\jakarta-tomcat-4.0\webapps\examples">
     Options Indexes FollowSymLinks
 # (2a) No directory indexing for the context root.
 #    Options -Indexes
 # (2b) Set index.jsp to be the directory index file.
 #    DirectoryIndex index.jsp
 </Directory>
 # (3) Protect the WEB-INF directory from tampering.
 <Location /examples\WEB-INF/>
     AllowOverride None
     deny from all
 </Location>
 # (4) Instructing Apache to send all the .jsp files
under the context to the 
 # jserv servlet handler. 
 <LocationMatch /examples/*.jsp>
     SetHandler jserv-servlet
 </LocationMatch>
 # (5) Direct known servlet URLs to Tomcat.
 ApJServMount /examples/servlet /examples

 # (6) Optional, direct servlet only contexts to
Tomcat.
 ApJServMount /servlet /ROOT
 </IfModule>


****************************************************








____________________________________________________________
Do You Yahoo!?
Get your free @yahoo.co.in address at http://mail.yahoo.co.in

Re: Forwarding Servlet/JSP Request to Tomcat from Apache

Posted by ni...@studioweb.com.
I have this exact problem, hope someone else can help.

S