Re: [Zope-dev] SESSION loosing data when system has multiple users

2003-10-17 Thread Chris McDonough
I will take a look. Thanks! - C On Fri, 2003-10-17 at 17:04, Steve Jibson wrote: > Chris, > > Sorry, I should have included more info, but my message was already a > bit long. > > I have run the tests on both Red Hat 7.3 and Red Hat 9 with the same > result. I am using python 2.2.3. Here

Re: [Zope-dev] SESSION loosing data when system has multiple users

2003-10-17 Thread Steve Jibson
Chris, Sorry, I should have included more info, but my message was already a bit long. I have run the tests on both Red Hat 7.3 and Red Hat 9 with the same result. I am using python 2.2.3. Here is the step-by-step for what I did (I'm going to err on the side of too much info here): - check

Re: [Zope-dev] SESSION loosing data when system has multiple users

2003-10-17 Thread Chris McDonough
What OS? That test was written obviously to make sure the system works... others have complained about similar issues. I'd like to be able to track this down, but I can't make the test fail under Red Hat 7.3. On Fri, 2003-10-17 at 15:56, Steve Jibson wrote: > We have been using Zope 2.7.0-beta2

[Zope-dev] SESSION loosing data when system has multiple users

2003-10-17 Thread Steve Jibson
We have been using Zope 2.7.0-beta2 and we have been having a bit of trouble with SESSION loosing data when we have more than one user on the system. These problems usually show up as KeyErrors when a particular data element in SESSION cannot be found. If I set the zserver threads to 1 in zop

Re: [Zope-dev] Post-Traversal Hook (+Post-Publication Hook)

2003-10-17 Thread Paul Winkler
On Fri, Oct 17, 2003 at 12:15:07PM -0400, Paul Winkler wrote: > On Fri, Oct 17, 2003 at 01:46:08PM +0200, Christian Theune wrote: > > > > Am Fr, 2003-10-17 um 13.38 schrieb robert: > > > what does publication mean in this context? > > > > I'm referring to the point in time after the method that w

Re: [Zope-dev] Post-Traversal Hook (+Post-Publication Hook)

2003-10-17 Thread Paul Winkler
On Fri, Oct 17, 2003 at 01:46:08PM +0200, Christian Theune wrote: > > Am Fr, 2003-10-17 um 13.38 schrieb robert: > > what does publication mean in this context? > > I'm referring to the point in time after the method that was addressed > by the request (e.g. index_html or __call__) was callen but

Re: [Zope-dev] Post-Traversal Hook (+Post-Publication Hook)

2003-10-17 Thread Christian Theune
Am Fr, 2003-10-17 um 13.38 schrieb robert: > what does publication mean in this context? I'm referring to the point in time after the method that was addressed by the request (e.g. index_html or __call__) was callen but hasn't been given back yet. So after the result of the request is known. Che

Re: [Zope-dev] Post-Traversal Hook (+Post-Publication Hook)

2003-10-17 Thread robert
what does publication mean in this context? Robert Am Freitag, 17. Oktober 2003 11:05 schrieb Christian Theune: > Hi, > > I'm cleaning up the alternative BaseRequest for Zope 2.7 right now which > implements a post traversal hook (which will go into 2.8) and discovered > a small issue I would like

[Zope-dev] Post-Traversal Hook (+Post-Publication Hook)

2003-10-17 Thread Christian Theune
Hi, I'm cleaning up the alternative BaseRequest for Zope 2.7 right now which implements a post traversal hook (which will go into 2.8) and discovered a small issue I would like to get some feedback from. Originally the patch called all registered methods after the user has been determined, but be