Greg Ward <gward-tapestry <at> python.net> writes: > works fine after restarting the whole servlet container (Tomcat 4.1.30), > but when I restart just my app, the OGNL expression > " <at> DataModels.UserModels.PrivilegeSet <at> AUDIT_USERS" (yes, our > package name > is "DataModels.UserModels" -- legacy code and all that) evaluates to > null. I have to restart Tomcat completely in order for this expression > to evaluate correctly. Annoying.
I'm not sure if this will help, but you may try using a context listener that calls: Introspector.flushCache(); on shutdown. See if it helps. -- Author of a book for learning Tapestry (www.agileskills2.org/EWDT) --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
