Friday, October 25, 2013

App Engine SDK - Google Engine

com.google.apphosting.utils.config.AppEngineConfigException: Invalid configuration

include the following chunk in your appengine-web.xml:
<threadsafe>true</threadsafe>
It is mandatory to explicitly set expectations whether your application is designed in a thread-safe way.

Source:
http://stackoverflow.com/questions/13880528/running-appengine-with-eclipse

Related Posts:

  • Java - Memory Analyzer A. To generate HEAP DUMP in Memory Analyzer: Project>Run Configuration> Arguments -XX:+HeapDumpOnOutOfMemoryError Heap dump will be generated when the out of memory occurs B. Use MAT to open Heap Dump Analyzin… Read More
  • Tomcat - loading additional libraries Create Sub Folder in Tomcat Lib Define those paths in shared.loader property of /conf/catalina.properties file. ################# shared.loader = ${catalina.home}/lib/novell/*.jar, ${catalina.home}/lib/mail/*.jar … Read More
  • Java - loop to iterate over enumpublic enum Direction {    NORTH,    NORTHEAST,    EAST,    SOUTHEAST,    SOUTH,    SOUTHWEST,    WEST,    NORTHWEST } for (Direction dir : Dire… Read More
  • JavaScript - setTimeOut vs setIntervalWith JavaScript, it is possible to execute some code at specified time-intervals. This is called timing events. It's very easy to time events in JavaScript. The two key methods that are used are: setInterval() - executes a … Read More
  • Java Memory Analyser VisualVM with Tomcat 1. adding these paramater into catalina.out set JAVA_OPTS=%JAVA_OPTS% -Dcom.sun.management.jmxremote=true set JAVA_OPTS=%JAVA_OPTS% -Dcom.sun.management.jmxremote.port=3333 set JAVA_OPTS=%JAVA_OPTS% … Read More

0 comments:

Post a Comment