Hi Ganapathi,
if you want to denote that your jsp is not
thread safe, add isThreadSafe="false" to the declaration at the top of you page:
<%@ page language="java" import=etc isThreadSafe="false"% ...rest of declarration>
if you do this, the server will queueu requests so that only one is answered at a time
chanoch