Concurrency problem in Servlets, JSP
Hi allI found that whenever 2 or more access my servlet or jsp, the server is giving an error.How do I solve this. How do I synchronize.Please help.Rajani
[203 byte] By [
rajani_s] at [2007-9-26 2:21:39]

You do know that once instantiated, a servlet object is used to service requests from multiple(and concurrent) clients. Right ?Well then, the first thing to check is whether you have any instance data members in your servlet classes or your JSPs.