Re: Number of Servlets Tomcat Container Creates

2007-03-30 Thread Evan J
I wouldn't get too hung up on the internals of tomcat here. You should remember servlet engines can be implement the spec in any way they see fit. They are only required to comply with the spec. Anything not spelled out there is subject to interpretation. Suffice it to say servlets in and of

Re: Number of Servlets Tomcat Container Creates

2007-03-30 Thread David Smith
Evan J wrote: On 3/30/07, David Smith <[EMAIL PROTECTED]> wrote: Quoting the spec here (SRV.2.1 of servlet spec 2.4): "The handling of concurrent requests to a Web application generally requires that the Web Developer design servlets that can deal with muiltiple threads executing within the s

Re: Number of Servlets Tomcat Container Creates

2007-03-30 Thread Evan J
On 3/30/07, David Smith <[EMAIL PROTECTED]> wrote: Quoting the spec here (SRV.2.1 of servlet spec 2.4): "The handling of concurrent requests to a Web application generally requires that the Web Developer design servlets that can deal with muiltiple threads executing within the service method at

Re: Number of Servlets Tomcat Container Creates

2007-03-30 Thread David Smith
Quoting the spec here (SRV.2.1 of servlet spec 2.4): "The handling of concurrent requests to a Web application generally requires that the Web Developer design servlets that can deal with muiltiple threads executing within the service method at a particular time. "Generally the Web container

Number of Servlets Tomcat Container Creates

2007-03-29 Thread Evan J
Hi, I am new to servlets and web container. From what I have read so far, I've gotten an impression that the web containers, in this case Tomcat, create only _one_ instance of each particular servlet upon start/[re]deployment of a web application. Any request to such servlet would cause a contain