Re: Problem: multiple browsers and session state

2002-02-07 Thread simon
Unfortunately, this does not solve my multiple browsers in single session problem. Being pragamatic, I don't actually think you can solve this insofar as come up with a one-size-fits all fix for these kind of issues. .s -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional

Re: Problem: multiple browsers and session state

2002-02-06 Thread simon
This is application-independant, in that it's not just struts this affects One solution is to look for potential collisions and implement a lease/lock strategy on the resources that my collide (similar to std. file/resource locking), although with a lease on the lock due to the stateless nature

RE: Problem: multiple browsers and session state

2002-02-06 Thread Greg Hess
It seems that session beans should have synchronized methods to avoid some of these problems? -Original Message- From: simon [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 10:02 AM To: Struts Users Mailing List Subject: Re: Problem: multiple browsers and session state

Re: Problem: multiple browsers and session state

2002-02-06 Thread Erich Meier
On Wed, Feb 06, 2002 at 03:02:15PM -, simon wrote: This is application-independant, in that it's not just struts this affects Correct. One solution is to look for potential collisions and implement a lease/lock strategy on the resources that my collide (similar to std. file/resource