> How many instance of same servlet can servlet container create?
In general, as many, or as few, as it likes. Be
sure you're prepared for the (common) situation
where the servlet container is using one instance
to serve multiple simultaneous requests.

Signature
Mark Jeffcoat
Austin, TX
> How many instance of same servlet can servlet container create?
Usually just one.
You can tell it to not have the same servlet object called
my multiple threads by having the servlet implement
SingleThreadModel.
Arne
vahan - 08 Nov 2006 10:59 GMT
Many thanks for yours responses