1

I'm trying to run the shell 'new GWT' project in hosted mode through Eclipse with no luck.

The server starts but immediately shuts down before I can do anything. Here is the full console output:

2011-04-11 22:20:09.415 java[546:903] [Java CocoaComponent compatibility mode]: Enabled
2011-04-11 22:20:09.416 java[546:903] [Java CocoaComponent compatibility mode]: Setting timeout for SWT to 0.100000
Initializing AppEngine server
Logging to JettyLogger(null) via com.google.apphosting.utils.jetty.JettyLogger
Successfully processed /Users/me/Documents/workspace/Game/war/WEB-INF/appengine-web.xml
Successfully processed /Users/me/Documents/workspace/Game/war/WEB-INF/web.xml
The server is running at http://localhost:8888/

It says that the server is running and the URL is there under the development tab, but the red box indicating a running application/server is already off.

Here are my specs:

  • Mac OSX Snow Leopard 10.6.7
  • Eclipse Helios
  • GWT 2.2.0 and associated plugins in Eclipse

A Google search shows that there were issues with 64 bit Java 6 but this was fixed in GWT 2.0.

What am I doing wrong?

Riley Lark
  • 20,660
  • 15
  • 80
  • 128
thedude19
  • 2,643
  • 5
  • 34
  • 43

1 Answers1

1

Mac put out a Java update that broke the dev server. You can use Pacify to roll back the update until they, I don't know, do "something" about it.

You want answer 39 at http://code.google.com/p/googleappengine/issues/detail?id=4712#c39

Riley Lark
  • 20,660
  • 15
  • 80
  • 128
  • Thank you! I did a search first but did not see that thread. Hopefully we get a proper fix soon. Already back on Java 6 update 22 and having no problems! – thedude19 Apr 12 '11 at 02:48