creating a instance of a servlet: takes too long!!

2001-07-06 Thread pedro salazar
Greetings, why is that my servlet when the first time is invoked, it takes about 30 seconds or more to start when the servlets that came in tomcat are instantaneous? After the servlet container instantiated and initialized my servlet, all the following requests are very fast. Is there any advice

AW: creating a instance of a servlet: takes too long!!

2001-07-06 Thread Ralph Einfeldt
[mailto:[EMAIL PROTECTED]] Gesendet: Freitag, 6. Juli 2001 11:02 An: [EMAIL PROTECTED] Betreff: creating a instance of a servlet: takes too long!! Greetings, why is that my servlet when the first time is invoked, it takes about 30 seconds or more to start when the servlets that came

RE: creating a instance of a servlet: takes too long!!

2001-07-06 Thread Michael Wentzel
why is that my servlet when the first time is invoked, it takes about 30 seconds or more to start when the servlets that came in tomcat are instantaneous? After the servlet container instantiated and initialized my servlet, all the following requests are very fast. Is there any advice

RE: creating a instance of a servlet: takes too long!!

2001-07-06 Thread Randy Layman
PROTECTED] Subject: creating a instance of a servlet: takes too long!! Greetings, why is that my servlet when the first time is invoked, it takes about 30 seconds or more to start when the servlets that came in tomcat are instantaneous? After the servlet container instantiated

Re: creating a instance of a servlet: takes too long!!

2001-07-06 Thread wire
Friday, July 06, 2001, 5:01:37 AM, [EMAIL PROTECTED] wrote: ps Greetings, ps why is that my servlet when the first time is invoked, it takes about 30 ps seconds or more to start when the servlets that came in tomcat are ps instantaneous? After the servlet container instantiated and

Re: creating a instance of a servlet: takes too long!!

2001-07-06 Thread wire
If your servlet has changed and needs to be recompiled, then using jikes instead of javac will save a lot of time. Friday, July 06, 2001, 5:01:37 AM, [EMAIL PROTECTED] wrote: ps Greetings, ps why is that my servlet when the first time is invoked, it takes about 30 ps seconds or more to start

RE: creating a instance of a servlet: takes too long!!

2001-07-06 Thread Frederick Lefebvre
PROTECTED]] Sent: Friday, July 06, 2001 9:18 AM To: [EMAIL PROTECTED] Subject: Re: creating a instance of a servlet: takes too long!! If your servlet has changed and needs to be recompiled, then using jikes instead of javac will save a lot of time. Friday, July 06, 2001, 5:01:37 AM, [EMAIL PROTECTED

Re: creating a instance of a servlet: takes too long!!

2001-07-06 Thread Bo Xu
pedro salazar wrote: Greetings, why is that my servlet when the first time is invoked, it takes about 30 seconds or more to start when the servlets that came in tomcat are instantaneous? After the servlet container instantiated and initialized my servlet, all the following requests are

Re: creating a instance of a servlet: takes too long!!

2001-07-06 Thread Peter Davison
There's another reason for this and it has to do with the java.security.SecureRandom class. From what I can tell, tomcat uses this class to generate a seed value for the session ID. The first request for a SecureRandom value (eg. new SecureRandom().nextLong()) can take many, many seconds to

Re: creating a instance of a servlet: takes too long!!

2001-07-06 Thread Bo Xu
Bo Xu wrote: pedro salazar wrote: Greetings, why is that my servlet when the first time is invoked, it takes about 30 seconds or more to start when the servlets that came in tomcat are instantaneous? After the servlet container instantiated and initialized my servlet, all the

RE: creating a instance of a servlet: takes too long!!

2001-07-06 Thread William Kaufman
. -Original Message- From: pedro salazar [mailto:[EMAIL PROTECTED]] Sent: Friday, July 06, 2001 2:02 AM To: [EMAIL PROTECTED] Subject: creating a instance of a servlet: takes too long!! Greetings, why is that my servlet when the first time is invoked, it takes about 30 seconds

Re[2]: creating a instance of a servlet: takes too long!!

2001-07-06 Thread wire
Friday, July 06, 2001, 10:16:05 AM, [EMAIL PROTECTED] wrote: PD There's another reason for this and it has to do with the java.security.SecureRandom class. From what I can tell, tomcat uses this class to generate a seed value for the PD session ID. The first request for a SecureRandom value