Re: Resuming a request cycle

2009-04-17 Thread nino martinez wael
Make a custom request cycle, or make a special filestore..The thing to think about are how do you know if you need to save the state. It has a impact on system scalability todo this... However this are so far I can go, I havent played much with request cycles or filestores... regards Nino 2009/4/

Re: Resuming a request cycle

2009-04-17 Thread Adam Wenocur
The session contains a stored query to which we'd like the user to have access from a second location, within a few seconds of establishing the initial request cycle. How would I go about saving the state and assigning it a uuid? This might work, as there is a particular WebPage that is lo

Re: Resuming a request cycle

2009-04-17 Thread nino martinez wael
should be just give state a uuid and save it.. Then when the request comes in load it again... But how do you know when to save it? Just all the time? And what will the session contain? 2009/4/17 Adam Wenocur : > Is it possible to resume a request cycle by submitting a web request using > only a U

Resuming a request cycle

2009-04-17 Thread Adam Wenocur
Is it possible to resume a request cycle by submitting a web request using only a URL? Ideally, we would like retrieve a unique identifier from the session or request cycle and include this value in a web request from a remote client in order to gain access to session parameters. Thanks,