No, I am saying I have three instances of the same servlet. Only one appears to be receiving the requests, but if things are like you say then what's going on with Tomcat? Are you saying I have three Tomcats running, even thought I called startup only once?
----- Original Message ----- From: Nikola Milutinovic <[EMAIL PROTECTED]> To: Tomcat Users List <[EMAIL PROTECTED]> Sent: Thursday, August 29, 2002 7:28 AM Subject: Re: Servlet Instances > >How should I control how many instances I want of a given servlet? > >In my case I would like just one. > > I don't think you can control that, usually there is only one instance per Servlet Engine. Are you trying to say that you don't want to have more than one REQUEST being handled by the servlet at one time (a complete request)? Then look at SingleThreadModel in Servlet specification. > > Nix. > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
