Re: Run class in the start up of Tomcat

2006-05-30 Thread Mark Thomas
Asaf Lahav wrote: > Is it possible to stop the tomcat shutdown sequence from with in the context > listener contextDestroyed function? No. The shutdown process has already started for the application and a number of other components have already been stopped. Mark ---

RE: Run class in the start up of Tomcat

2006-05-29 Thread Asaf Lahav
ahav [mailto:[EMAIL PROTECTED] Sent: Monday, May 29, 2006 1:24 PM To: 'Tomcat Users List' Subject: RE: Run class in the start up of Tomcat Thanks Juanjo, That link helped. Asaf Lahav VP R&D, Prima Grid LTD. Cellular: 972-54-4717955 Phone: 972-3-6540255

RE: Run class in the start up of Tomcat

2006-05-29 Thread Asaf Lahav
gt; > * @param throwable Exception to be logged > > */ > > private void log(String message, Throwable throwable) { > > > > if (context != null) > > context.log("ContextListener: " + message, throwable); > >

Re: Run class in the start up of Tomcat

2006-05-29 Thread Juanjo Cuadrado
b.xml: starters.ContextServletsTest For some reason its not working and I can't figure it out. Apperently I did every thing as required. Yet it doesn't function at all. Thanks in advance, Asaf Lahav VP R&D, Prima Grid LTD. Cellular: 972-54-4717955

RE: Run class in the start up of Tomcat

2006-05-28 Thread Asaf Lahav
as required. Yet it doesn't function at all. Thanks in advance, Asaf Lahav VP R&D, Prima Grid LTD. Cellular: 972-54-4717955 Phone: 972-3-6540255 Fax: 972-3-6540254 -Original Message- From: Parsons Technical Services [mailto:[EMAIL PROTECTED] Sent:

Re: Run class in the start up of Tomcat

2006-05-15 Thread Parsons Technical Services
Are you wanting to start a servlet or load a class? You can load a servlet at the application level. load-on-startup in the servlet class element in the web.xml of the app. Scored srm.Scored 1 The number indicates the order that the servlet is loaded. As for a class you will