multiple init() calls

2002-01-31 Thread Serge A. Redchuk
Hi All ! I've encountered a problem with creating threads of init servlet. Forgive me if I'm wrong. As I think, catalina must call init() method of init servlet _once_. And then just must make only copies of init servlet instance for new user requests. But I've encountered that the init()

RE: multiple init() calls

2002-01-31 Thread Anton Brazhnyk
Hi, -Original Message- From: Serge A. Redchuk [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 31, 2002 10:34 AM To: [EMAIL PROTECTED] Subject: multiple init() calls Hi All ! I've encountered a problem with creating threads of init servlet. Forgive me if I'm wrong

Re: multiple init() calls

2002-01-31 Thread David Rault
hi i think there may be a misunderstanding (or i misunderstood your message ?!) the servlet must create _only_ one instance of each servlet class per web application then this instance must receive _one_ message init() at this point user request may be served for each user request, a thread is

RE: multiple init() calls

2002-01-31 Thread Anton Brazhnyk
Hi, -Original Message- From: David Rault [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 31, 2002 11:36 AM To: Tomcat Users List Subject: Re: multiple init() calls hi i think there may be a misunderstanding (or i misunderstood your message ?!) the servlet must create

Re[2]: multiple init() calls

2002-01-31 Thread Serge A. Redchuk
Hello David, Anton ! thanks a lot for help ! And excuse me because while asking the question about multiple init() calls I've forgotten to inform about one thing ... My servlet IS NOT directly extended from HttpServlet, but: import org.apache.struts.action.ActionServlet; ... public class

RE: multiple init() calls

2002-01-31 Thread Craig R. McClanahan
See intermixed below. On Thu, 31 Jan 2002, Anton Brazhnyk wrote: Date: Thu, 31 Jan 2002 12:20:16 +0200 From: Anton Brazhnyk [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: RE: multiple init() calls Hi, -Original

Re[2]: multiple init() calls

2002-01-31 Thread Craig R. McClanahan
On Thu, 31 Jan 2002, Serge A. Redchuk wrote: Date: Thu, 31 Jan 2002 13:31:53 +0200 From: Serge A. Redchuk [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED], Serge A. Redchuk [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re[2]: multiple init() calls