How many Request, Response & session instance you can create for N number of uesr request from a. user request from same userb. user request from diffrent user

Showing Answers 1 - 15 of 15 Answers

since every time when ever a requist is sent by client/browser a thread is created by container and service method is invoked according to request method service() invokes get/post method . Therefore for every thread Request and Response method is initialised by Get/post method and a session by HttpSission class. 

  Was this answer useful?  Yes

sasikumarnp

  • Jul 25th, 2009
 

Every time the client make a request to servlet or JSP the container will create request and response object, but only one session object associate with client.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions