1 Aug
2002
1 Aug
'02
4:25 p.m.
KevinL wrote:
Reason I ask is, I have an app that tries to set session variables within the standard_error_message, and debug indicates the variables are there within that transaction, but gone on the next request from the browser.
Short version: You can't set session information in standard_error_message. The session info is stored in a ram-based ZODB. Now, because an error has occured, the ZODB transaction has most likely been aborted by the publisher, hence your values aren't actually stored in the session. cheers, Chris