Hi all, I am trying to run Myfaces on App Engine. I wrote a filter for initialization of the framework, since current ServletContextListener initializer is not working correctly because of appengine issue 1828 (http://code.google.com/p/googleappengine/issues/detail?id=1828).
It works like: * Check static boolean "initialized" is true * If true, continue * Else, init the framework and set "initialized" to true At the first call, I see that the framework is initialized, and static "initialized" field is set to true. However, after some time (ie. 5 minutes), my filter is recreated, instance variables are gone and most interesting part is, static "initialized" field is set to its default value(false). Thus, framework is initialized again with a call after 5 minutes. I think my filter class is reloaded or something. Why that can happen? Thanks, -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
