Thanks for the reply. Is this the same as adding the following lines to TomcatConf.xml?
 
  <!-- Dev Network console context -->
        <Context path="" docBase="c:\dev\propel\devnetwork\" crossContext="true" debug="0" reloadable="true">
        </Context>
 
Or, do I have to set up another context in server.xml? (the above works fine for everthing except reloading servlets without restarting tomcat. It doesn't make sense to have to duplicate the context definition.)
 
Thanks,
Steve
-----Original Message-----
From: H.F.N. den Boer [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, April 17, 2001 11:44 AM
To: [EMAIL PROTECTED]
Subject: Re: Servlet reloading problems

In server.xml set reloadable to true. I use the context mapping;
            <Context path="/xx"
                     docBase="xx"
                     crossContext="true"
                     debug="i"
                     reloadable="true"
                     trusted="true" >
            </Context>
That's all.  And it works perfect on the following config I use;
Win2K server, build 5.00.2195
IIS 5.0, configured with ISAPI filter
JDK1.3.1beta
Tomcat 3.2.1 running as NT service
Nico
----- Original Message -----
Sent: Tuesday, April 17, 2001 8:06 PM
Subject: Servlet reloading problems

I've read all the archives and still cannot get my servlet to reload. I am running TOMCAT Version 3.2.1 on Windows 2000. Does anyone have a formula to get this to work?
 
My servlet is in WEB-INF/classes, and I do not have WEB-INF in my classpath, and I have tried setting reloadable to both true and false. Is there anything else I can do?
 
 
Thanks,
Steve

Reply via email to