Context.xml ??? Mine seems to have only default entry (I never touched it). I thought it is being used only if configuration changes should be loaded WITHOUT stopping the server. I do not require this, and with previous versions of tomcat this file was inexistent.

Here is what I have in my context.xml


<!-- The contents of this file will be loaded for each web application -->
<Context>

   <!-- Default set of monitored resources -->
   <WatchedResource>WEB-INF/web.xml</WatchedResource>
<!-- Uncomment this to disable session persistence across Tomcat restarts -->
   <!--
   <Manager pathname="" />
   -->

</Context>

What should I add here??

I thought the only relevant thing is

<load-on-startup>1</load-on-startup>

Which should tell Tomcat to load this servlet first. I have the Struts action 
servlet put on position 2.


Tom



[EMAIL PROTECTED] wrote:

hi,
have you  enabled reload="true" in <context> tag in conf/server.xml?

--
Manivannan Palanichamy
http://geocities.com/manivannan57






-----Original Message-----
From: Tom Bednarz <[EMAIL PROTECTED]>
To: Tomcat Users List <users@tomcat.apache.org>
Sent: Mon, 24 Apr 2006 08:19:10 +0200
Subject: Preload of servlet does not work with Tomcat 5.5.15


I have a silly problem: I defined the following in the web.xml of my web application: <servlet> <servlet-name>MTWInit</servlet-name> <servlet-class>ch.smartsol.mtweb.servlets.MTWInit</servlet-class> <init-param> <param-name>MailConfiguration</param-name> <param-value>/WEB-INF/config/Mail.properties</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> This servlet is NOT loaded at all. This is true for the following situations: - when running in Eclipse (with MyEclipse IDE) debugger, the breakpoints in the servlets init() function are NEVER hit - when running tomcat as service (under Windows) no log entries are written which means init() is never called Any idea what could be wrong?? Tom --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
________________________________________________________________________
Check Out the new free AIM(R) Mail -- 2 GB of storage and industry-leading spam 
and email virus protection.



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

Reply via email to