I am trying to get two seperate sessions on the same workstation. I have
put the sessionid as a label on the page and I get only one sessionid if I
open two "sessions" in seperate IE executions. I also get the same if I
embed a webbrowser control into a windows application.
Any ideas?
Thanks
Lloyd Sheen
Jacques - 06 Dec 2007 16:06 GMT
Have you tried this using one IE browser and the other Firefox?
> I am trying to get two seperate sessions on the same workstation. I have
> put the sessionid as a label on the page and I get only one sessionid if I
[quoted text clipped - 5 lines]
> Thanks
> Lloyd Sheen
Lloyd Sheen - 06 Dec 2007 18:46 GMT
> Have you tried this using one IE browser and the other Firefox?
>
[quoted text clipped - 8 lines]
>> Thanks
>> Lloyd Sheen
Not an option.
LS
bruce barker - 06 Dec 2007 16:43 GMT
switch to cookieless sessions, as the broser shares the session cookie.
-- bruce (sqlwork.com)
> I am trying to get two seperate sessions on the same workstation. I
> have put the sessionid as a label on the page and I get only one
[quoted text clipped - 5 lines]
> Thanks
> Lloyd Sheen
Lloyd Sheen - 06 Dec 2007 18:46 GMT
> switch to cookieless sessions, as the broser shares the session cookie.
>
[quoted text clipped - 9 lines]
>> Thanks
>> Lloyd Sheen
Not an option.
LS
bruce barker - 06 Dec 2007 19:37 GMT
as the browser will share the session cookie (you can not change this),
you will need to write you own session handler. you can store your
session data in a collection in session, and store a key in a hidden
field on the page. be sure to include the key in the url on a redirect.
-- bruce (sqlwork.com)
>> switch to cookieless sessions, as the broser shares the session cookie.
>>
[quoted text clipped - 13 lines]
>
> LS
Lloyd Sheen - 06 Dec 2007 23:41 GMT
> as the browser will share the session cookie (you can not change this),
> you will need to write you own session handler. you can store your session
[quoted text clipped - 21 lines]
>>
>> LS
Seems that a CTL-F5 will do the trick.
Thanks
LS
Andy Fish - 06 Dec 2007 20:32 GMT
the session cookies are shared between all the IE windows owned by one
specific iexplore.exe (e.g using open new window etc)
each time you open up internet explorer from the start menu (or just
start/run iexplore), you will get a new iexplore.exe which will not share
sessions with the others
I use this all the time for testing web apps
>I am trying to get two seperate sessions on the same workstation. I have
>put the sessionid as a label on the page and I get only one sessionid if I
[quoted text clipped - 5 lines]
> Thanks
> Lloyd Sheen