i get 503 error from eclipse integrated jetty server while running project in a web browser. i get this error since i changed the gae application-id of the project.
Solution in my situation - just kill all javaw.exe *32 process in task manager.
I'm using maven, but had the same problem. With maven we don't have the SDK version set in project properties, instead we have this plugin:
<plugin>
<groupId>com.google.appengine</groupId>
<artifactId>appengine-maven-plugin</artifactId>
<version>1.8.3</version>
To solve the exception:
Window/Show View/Other... > Servers/Server
and then right click on the used AppEngine server then click Clean...
.
Note: this will wipe your local dev datastore, so make a backup of the file if you want to keep your data:
.../workspace/.metadata/.plugins/org.eclipse.wst.server.core/tmp${SERVER_NUM}/${DEPLOYED_APP_NAME}/WEB-INF/appengine-generated/local_db.bin
I faced this same problem. SystemServiceServlet seems to be needed only if you want to deploy the web admin servlet in jetty.
In my case the issue was the GAE eclipse plugin was using GAE Java SDK 1.6 by default and the package com.google.api.server is no even there. I fixed it by setting the SDK manually to GAE SDK 1.7.
Be careful when changing the SDK, I tried by changing the default SDK but still had this problem until I selected "Use specific SDK" pointing to 1.7.