timy
timy

Reputation: 511

Deploy a Java app to GAE

I tried to deploy a pushbot on GAE by using: http://code.google.com/p/partychapp/source/browse/pushbot source code.

I can see the bot online, but it never answer my command, did I miss something?

The error like:

0.1.0.10 - - [20/Dec/2011:03:53:40 -0800] "POST /_ah/xmpp/message/chat/ HTTP/1.1" 500 0 - - "mypushbot.appspot.com" ms=1472 cpu_ms=937 api_cpu_ms=0 cpm_usd=0.026155 loading_request=1 instance=00c61b117c16beda068d441a41e0403d7f2a W 2011-12-20 03:53:40.600 EXCEPTION java.lang.ClassNotFoundException: info.persistent.pushbot.PushSubscriberServlet at com.google.appengine.runtime.Request.process-dee70bec3ae50151(Request.java) at java.lang.ClassLoader.loadClass(ClassLoader.java:266) at org.mortbay.util.Loader.loadClass(Loader.java:91)

Upvotes: 0

Views: 167

Answers (2)

bchetty
bchetty

Reputation: 2241

Did you check the JRE Class White List for GAE, before deploying it to GAE?

You can also find relevant discussion related to this (probably), on this site: JRE Class Black List For GAE

Upvotes: 0

Arnaud Gourlay
Arnaud Gourlay

Reputation: 4666

Did you compiled the project and ran it locally before pushing it to the cloud?

Upvotes: 1

Related Questions