----------------------------- Please read the FAQ! <http://java.apache.org/faq/> ----------------------------- On Tue, 17 Aug 1999, you wrote: >I'd like to known if there is a pretty solution to make a distinction >between >two or more browser window. >If I use a HttpSession, all the browser will share the same session that >is >not good for me. >I want that if a user create a new browser window then redirect his >browser >to another web page. To achieve this you would have to make sure that cookies are *not* used. I am doing session management on application level (by not using the session mechanism provided by the servlet engine) using a combination of URL rewriting and hidden fields. This would solve your problem entirely. The drawback is, that you have to spend some effort to write the custom session management stuff. Therefore you should first find out, whether the servlet engine provides the possibility to disable cookies and to use URL rewriting. I remember that I didn't find such a 'force cookie disable' function some time ago, but I didn't investigate for a too long time. bye Sam Jordan -- -------------------------------------------------------------- Please read the FAQ! <http://java.apache.org/faq/> To subscribe: [EMAIL PROTECTED] To unsubscribe: [EMAIL PROTECTED] Archives and Other: <http://java.apache.org/main/mail.html> Problems?: [EMAIL PROTECTED]