in reply to New Session for new Window (or: Session ID vs. Process ID...)

There is no way to do what you want with cookies. Cookies are intentionally shared between browser windows. What you have to do is maintain state using data in the URL or hidden form fields. Not just a session ID in the URL, but the whole session data. That's the only way this can work.
  • Comment on Re: New Session for new Window (or: Session ID vs. Process ID...)

Replies are listed 'Best First'.
Re^2: New Session for new Window (or: Session ID vs. Process ID...)
by pavan12s (Initiate) on Mar 30, 2009 at 11:19 UTC
    Hi All, In my application two threads from same process are ending up creating two sessions with one overwriting the other. Can anyone please suggest me how can i determine if the two requests are from same threads with in process or its from different processes. Using synchronisation doesnt seem to solve my problem Best Regards, Pavan