Re: How to identify the different instance of the same browser?

2000-11-29 Thread Thang Nguyen
I'm just a beginer in JSP, and I never in circumstance like that, but when using Servlet, I see that each session has an seperate Id even for several instances. I heard that Jsp could mix with Servlet, So give it a try ! Regards. -Original Message- From: Micha³ Trojanowski [mailto:[EMAIL

Re: How to identify the different instance of the same browser?

2000-11-29 Thread Robuschi (Delfi)
Hello If you have a common starting page, you could store the session ID in a bean and then the bean should give back a counter of that session... This could be a starting idea Bye Robuschi Roberto Delfi srl P.za Ravenet 1/b - 43100 PARMA Tel. 0521/932474 Fax

Odp: Re: [JSP-INTEREST] How to identify the different instance of the same browser?

2000-11-29 Thread Micha³ Trojanowski
Hi! I'm not sure if I understood you correctly about that counter, but the problem is that when I open a browser and then I choose File-New Window, I get two browsers, that have two identical session ids. (This situation does not exist, when I open new browser by running it from command line or

Re: Odp: Re: [JSP-INTEREST] How to identify the different instance of the same browser?

2000-11-29 Thread Robuschi (Delfi)
- Original Message - Hi! I'm not sure if I understood you correctly about that counter, but the problem is that ... sequential type, it matters for me which response was sent to which of instances. I don't have an exact idea of how to do that. You can try to get some session

Re: How to identify the different instance of the same browser?

2000-11-29 Thread Thang Nguyen
Hi, using javax.servlet.http.HttpSession, it has method call getLastAccessedTime : Returns the last time the client sent a request associated with this session, as the number of milliseconds since midnight January 1, 1970 GMT, so I think if you could keep track on this detail, you could know

Re: How to identify the different instance of the same browser?

2000-11-29 Thread Mark Wutka
Someone mentioned this same problem earlier this year. I posted a small servlet that lets you do "sub-sessions" for a browser. It's a hack, but the idea is that you embed a session ID in the path and have a servlet filter the ID back out of the path and store it in the request. Here's a link to

Re: How to identify the different instance of the same browser?

2000-11-29 Thread Micha³ Trojanowski
Hi! Thanks for all, who answered my question. Mark - sorry, that I missed your earlier letter - your servlet is a very interesting piece of code. Thanks and regards! Michal === To unsubscribe: mailto [EMAIL PROTECTED] with

Odp: [JSP-INTEREST] How to identify the different instance of the same browser?

2000-11-28 Thread Micha³ Trojanowski
Hi. As far as I see, there were no responses to this question. But the problem is very important to me either, so if anyone had any ideas, I would also be grateful for the answer. Best regards and thanks Michal - Original Message - From: Rathna [EMAIL PROTECTED] To: [EMAIL PROTECTED]

How to identify the different instance of the same browser?

2000-11-23 Thread Rathna
Hi all, When the user invokes the first instance of the browser, a session id is created. Even if the user creates multiple instances of the browser window, the session id remains the same. Hence, we are unable to identify the browser window that sends a request. We need to figure out a way to