Re: posting fourth time but did not got any answer

2000-08-16 Thread David Sierra Fernandez
> > -Original Message- > From: David Sierra Fernandez <[EMAIL PROTECTED]> > To: Orion-Interest <[EMAIL PROTECTED]> > Cc: Orion-Interest <[EMAIL PROTECTED]> > Date: Mittwoch, 16. August 2000 16:28 > Subject: Re: posting fourth time but did not got any answer >

Re: posting fourth time but did not got any answer

2000-08-16 Thread Christian Sell
16:28 Subject: Re: posting fourth time but did not got any answer > >In web.xml, nested in servlet tag you have a tag called >where you specify the priority number which your servlet will have. > >a value of -1 will not load on startup

RE: posting fourth time but did not got any answer

2000-08-16 Thread Khan Kamran
Title: RE: posting fourth time but did not got any answer Thanks to all of you. Now I will try these options when i will be home after office. Kamran -Original Message- From: David Sierra Fernandez [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 16, 2000 12:58 PM To: Orion

Fw: Re: posting fourth time but did not got any answer

2000-08-16 Thread Stanislav Bernatsky
-Original Message- From: Christian Sell <[EMAIL PROTECTED]> To: Orion-Interest <[EMAIL PROTECTED]> Date: Sun, 13 Aug 2000 14:32:00 +0200 Subject: Re: posting fourth time but did not got any answer > for server startup, the following should do: > > 1. specify loa

Re: posting fourth time but did not got any answer

2000-08-16 Thread David Sierra Fernandez
In web.xml, nested in servlet tag you have a tag called where you specify the priority number which your servlet will have. a value of -1 will not load on startup your servlet. Hope this helps. - David Sierra Fern nd

RE: posting fourth time but did not got any answer

2000-08-14 Thread J.T. Wenting
Title: RE: posting fourth time but did not got any answer I know it's not very robust. That's why I designated it a quick hack. -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Hani SuleimanSent: 14 August 2000 17:31To

RE: posting fourth time but did not got any answer

2000-08-14 Thread Hani Suleiman
Title: RE: posting fourth time but did not got any answer This isn't a very robust approach, because finalize is not guaranteed to be called. It might or might not. In fact in case of server shutdown, it's pretty unlikely to get called. For servlets, you should do your shutdown st

RE: posting fourth time but did not got any answer

2000-08-13 Thread J.T. Wenting
be right before the JVM terminates ;) > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Christian Sell > Sent: Sunday, August 13, 2000 14:32 > To: Orion-Interest > Cc: Orion-Interest > Subject: Re: posting fourth time but d

Re: posting fourth time but did not got any answer

2000-08-13 Thread Christian Sell
for server startup, the following should do: 1. specify load-on-startup for your servlet in web.xml 2. specify load-on-startup for your web application in web-site.xml for server shutdown, I have no idea > Khan Kamran schrieb: > > Hi all, > > I want to know how i can run my servlet at orion s

posting fourth time but did not got any answer

2000-08-11 Thread Khan Kamran
Title: posting fourth time but did not got any answer Hi all, I want to know how i can run my servlet at orion server startup and shutdown. Ples help