Re: JSessionID Confusion

2006-10-24 Thread Martin Gainty
t;Tomcat Users List" Sent: Tuesday, October 24, 2006 4:43 PM Subject: Re: JSessionID Confusion > Thanks, Dave. One more question - How can you tell Tomcat to assign > sessions based on session IDs defined in CGI variables? > > -Ryan > > On Oct 23, 2006, at 4:04 PM, D

Re: JSessionID Confusion

2006-10-24 Thread Ryan O'Hara
Thanks, Dave. One more question - How can you tell Tomcat to assign sessions based on session IDs defined in CGI variables? -Ryan On Oct 23, 2006, at 4:04 PM, David Smith wrote: Short answer: no. Tomcat doesn't have any knowlege of how many windows client-side are sharing the same sessio

Re: JSessionID Confusion

2006-10-23 Thread Christopher Schultz
Ryan, > Is there anyway to create JSessionIDs per window rather than per > browser? I am having the problem of when you open multiple tabs within > a browser, and enter two simultaneous queries, the results returned are > corrupted. Any suggestions? Thanks for the help. I have an application t

Re: JSessionID Confusion

2006-10-23 Thread David Smith
Short answer: no. Tomcat doesn't have any knowlege of how many windows client-side are sharing the same session cookie. As long as the same session cookie is returned, tomcat see's just one client. The issue can be mitigated by storing state information in the request via hidden form fields

RE: JSessionID Confusion

2006-10-23 Thread Caldarale, Charles R
> From: Ryan O'Hara [mailto:[EMAIL PROTECTED] > Subject: JSessionID Confusion > > I am having the problem of when you open multiple tabs > within a browser, and enter two simultaneous queries, > the results returned are corrupted. Sounds like an application bug - keepi

JSessionID Confusion

2006-10-23 Thread Ryan O'Hara
Is there anyway to create JSessionIDs per window rather than per browser? I am having the problem of when you open multiple tabs within a browser, and enter two simultaneous queries, the results returned are corrupted. Any suggestions? Thanks for the help. -Ryan