This JSF implementation is trying to start new thread, which is not possible on GAE. You need to modify your web.xml to include
<context-param> <param-name>com.sun.faces.enableThreading</param-name> <param-value>false</param-value> </context-param> in your faces servlet configuration. See https://sites.google.com/a/wildstartech.com/adventures-in-java/Java-Platform-Enterprise-Edition/JavaServer-Faces/sun-javaserver-faces-reference-implementation/configuring-jsf-20-to-run-on-the-google-appengine for a complete guide. -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" 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-java?hl=en.
