servlet problems with web app outside Tomcat directory

2003-03-29 Thread Peter Reynolds
Hello Mike,

http://www.mail-archive.com/[EMAIL PROTECTED]/msg90076.html

Did you ever manage to solve this problem? I think I have the same one 
and I couldn't see any replys to your message on the list.

Thanks,

Peter

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


Re: servlet problems with web app outside Tomcat directory

2003-03-29 Thread Boon Seong
since you have a package name for ur servlet , i think u need do a servlet
mapping
on web.xml file

- Original Message -
From: Peter Reynolds [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Saturday, March 29, 2003 3:40 PM
Subject: servlet problems with web app outside Tomcat directory


 Hello Mike,

 http://www.mail-archive.com/[EMAIL PROTECTED]/msg90076.html

 Did you ever manage to solve this problem? I think I have the same one
 and I couldn't see any replys to your message on the list.

 Thanks,

 Peter


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



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



Re: servlet problems with web app outside Tomcat directory

2003-03-29 Thread Jacob Kjome
You really need to read the release notes.  In recent Tomcat versions, the 
invoker servlet mapping is commented out in 
CATALINA_HOME/web.xml.  Uncomment that and your problem will be 
solved.  Note that it was disabled because of security issues so I would 
not recommend enabling the invoker servlet on a production box.  You should 
use custom servlet mappings anyway.

Jake

At 01:40 PM 3/29/2003 +, you wrote:
Hello Mike,

http://www.mail-archive.com/[EMAIL PROTECTED]/msg90076.html

Did you ever manage to solve this problem? I think I have the same one and 
I couldn't see any replys to your message on the list.

Thanks,

Peter

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


servlet problems with web app outside Tomcat directory

2003-03-23 Thread Michael Harrison
Hello,

 

I've been struggling for several days with setting up a modest web
application outside the Tomcat installation directory. I have JSPs
compiling, executing, and returning the proper display data, but I
cannot get my servlets to work: I only get 404 errors.

 

I'm running Apache 2.0.44 and Tomcat 4.1.18 on Linux. I have mod_jk.so
included in httpd.conf to provide AJP connectors to Tomcat. I have a
/home/web directory set up to contain all of my sites' filesystems. One
of these--we'll call it appsite.com--is happily laid out in
/home/web/appsite.com. I take care of the virtual hosts in my Apache
httpd.conf file. I have laid out the following structure for the site:
/home/web/appsite.com/webapps/ROOT. This is where I have JSPs and static
files. 

 

I set the DocumentRoot in httpd.conf to
/home/web/appsite.com/webapps/ROOT/. I also added an include directive
to include mod_jk directives in a separate file. In the mod_jk
configuration file, I include these servlet-specific JkMount directives:

JkMount /servlet  ajp13

JkMount /servlet/*  ajp13

 

In server.xml, I have the following containers defined:

 

Engine name=Tomcat-Apache-mod_jk defaultHost=www.appsite.com
debug=0

..

Host name=www.appsite.com debug=1
appBase=/home/web/www.appsite.com/webapps

..

Context path= docBase=ROOT debug=0/

 

The servlets are located in
/home/web/appsite.com/webapps/ROOT/WEB-INF/classes/mypackage/. I'm
trying to call them through www.appsite.com/servlet/myprefix.ServletX,
and that's when I get the 404.

 

Is there something else I need to do to map servlet to the
webapps/ROOT/WEB-INF/classes directory of my site? 

 

Thanks,

 

Michael