If I understood correctly whenever a new request (from browser) comes to a servlet it will handle that request in a new thread. And there will be only one instance of the servlet. How does a servlet differentiates 2 requests coming from same PC ?
Thanks
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12268
1
posted
0
How does a servlet differentiates 2 requests coming from same PC ?
Each request will be handled in its own Thread. If they are both coming from the same browser, they will (probably) have the same session. It is up to the programmer to handle any logic problems that might arise. Multiple requests from the same browser are quite common - for example with servlet created images. Bill