RE: simple question for servlet-configuration of tomcat

2001-04-06 Thread Benoît Jacquemont
Please look at the answers after posting a question. I have already answered to your question yesterday: Hi, You just have to declare a context like this: Context path="" docBase="/path/to/myapp" debug="0" reloadable="false" /Context in your TOMCAT_HOME/conf/server.xml. You

RE: simple question for servlet-configuration of tomcat

2001-04-06 Thread Brett Knights
What I have to do (in the configuration files) when I want to start my servlets with the URL: http://localhost/servlet/TestServlet and not with a WEPAPP-Directory like http://localhost/example/servlet/TestServlet Which settings I have to do in the configuration-files and in which

Re: simple question for servlet-configuration of tomcat

2001-04-06 Thread Mandar Joshi
You simply need to put your stuff uner ROOT context. - Original Message - From: "TOPO graphics GmbH" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 06, 2001 7:19 AM Subject: simple question for servlet-configuration of tomcat Hello, since several weeks I

Servlet auto-reloading under ROOT context (was RE: simple question for servlet-configuration of tomcat)

2001-04-06 Thread Joel Parramore
Regards, Joel Parramore -Original Message- From: Mandar Joshi [mailto:[EMAIL PROTECTED]] Sent: Friday, April 06, 2001 2:51 PM To: [EMAIL PROTECTED] Subject: Re: simple question for servlet-configuration of tomcat You simply need to put your stuff uner ROOT context. - Origina

Re: Servlet auto-reloading under ROOT context (was RE: simple question for servlet-configuration of tomcat)

2001-04-06 Thread Tony LaPaso
is completely broke in T4 b2/3. - Original Message - From: "Joel Parramore" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 06, 2001 2:28 PM Subject: Servlet auto-reloading under ROOT context (was RE: simple question for servlet-configuration of tomcat) On

RE: simple question for servlet-configuration of tomcat

2001-04-06 Thread Brett Knights
\uriworkermap.properties-auto HTH BTW In my example below it looks like Tomcat is serving my static content. :-( -Original Message- From: Brett Knights [mailto:[EMAIL PROTECTED]] Sent: Friday, April 06, 2001 10:16 AM To: '[EMAIL PROTECTED]' Subject: RE: simple question for servlet-configuration

A Simple question to the configuration of tomcat

2001-04-05 Thread TOPO graphics GmbH
Hello, since several weeks I am testing tomcat as a Servlet Engine with great success. I use Win98 SE2 with PWS. Now I have a simple problem (I think): What I have to do (in the configuration files) when I want to start my servlets with the URL: http://localhost/servlet/TestServlet and not

RE: A Simple question to the configuration of tomcat

2001-04-05 Thread Benoît Jacquemont
Hi, You just have to declare a context like this: Context path="" docBase="/path/to/myapp" debug="0" reloadable="false" /Context in your TOMCAT_HOME/conf/server.xml. You should also remove the ROOT context and the ROOT directory that is in the webapp directory. Anyway, in real