I want to test a apache server for the "IsThreadSage".
1) If it keeps a single servlet instance and queues up the request to it or
2)Makes a pool of instances but lets each instance only handle one request at a time or
3)ignore IsThreadSafe
I want to write a simple JSP page to test which of these my webserver is doing..
Can someone help me how to test this??
In my jsp page, I want to set
<%@ page isThreadSafe="false" %>.
1) If it keeps a single servlet instance and queues up the request to it or
2)Makes a pool of instances but lets each instance only handle one request at a time or
3)ignore IsThreadSafe
I want to write a simple JSP page to test which of these my webserver is doing..
Can someone help me how to test this??
In my jsp page, I want to set
<%@ page isThreadSafe="false" %>.