Jörn Nettingsmeier wrote: [...]
anyways, right now i'm totally mystified by something else. somehow the "user" attribute is reset when the usecase moves on, but i don't know when or by what.
This happens because the usecase component is released before the response is sent, and recreated when the continuation is called. This is necessary to avoid that stale components aren't released. All usecase handler classes have to be stateless, but the parameters are restored, so you have to use parameters instead of fields. -- Andreas -- Andreas Hartmann Wyona Inc. - Open Source Content Management - Apache Lenya http://www.wyona.com http://lenya.apache.org [EMAIL PROTECTED] [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
