Hi
I would like to know that "how do we manage multi browser request for same session at server for single user or multiple user".
suppose first time i access www.google.com from one browser,second time the same req from different browser so this time how server recognize that ,this is the same req for www.google.com.
can we do it using session or is there any other way to do this.
suppose first time i access www.google.com from one browser,second time the same req from different browser so this time how server recognize that ,this is the same req for www.google.com.
can we do it using session or is there any other way to do this.
Please revert me on this.
Thanks to all .

Mahesh ChandPosted Jun 13, 2011, 11:15 AM
Pradeep ChandrakerPosted Jun 13, 2011, 10:54 AM
For each browser instance new session will be created on web server. Normally there is no way that same server session will be shared by different browser instance. Some web sites track request based on your local device IP, but this is totally different from session.
Let me know if you have any specific issue? may be I can help :)
Pradeep ChandrakerPosted Jun 14, 2011, 9:45 AM
Other than cookie less session, if you talk about session it normally use cookie to store session id, it is no exception with google. The browser tab provides kind of functionality which allows you to share same session, when it comes to sharing session it is equivalent to window.open or ctrl + n. If you want to force new session on tab you can go for cookie less session.
If you want to have further discussion you may open new thread as the answer is already accepted for this one.
Suthish NairPosted Jun 14, 2011, 7:21 AM
Another issue, read on
Sachin KaliaPosted Jun 14, 2011, 3:27 AM
I am so happy to be a part of this community.
Cheers .Net.