Jaanus
Jaanus

Reputation: 16541

GWT get started eclipse problem

was followin this tutorial

http://code.google.com/intl/et-EE/webtoolkit/usingeclipse.html

when i run my program in browser by IP , the application works enter image description here

but when i compile it and run it in producution mode, it says that server isn't running enter image description here

anyone knows the solution? or what i am doing wrong?

server i think is jetty, it comes with GWT by default

Initializing AppEngine server
Logging to JettyLogger(null) via com.google.apphosting.utils.jetty.JettyLogger
 Successfully processed C:\Users\Jansu\Documents\workspace\gtw-test\war\WEB-INF/appengine-web.xml
 Successfully processed C:\Users\Jansu\Documents\workspace\gtw-test\war\WEB-INF/web.xml
The server is running at http://localhost:8888/

Upvotes: 1

Views: 215

Answers (1)

Nican
Nican

Reputation: 7935

You have to use TomCat, Glassfish, or jetty to run the web server.

Upvotes: 3

Related Questions