Reputation: 859
I can't get running Google Endpoints Framework V2 on local AppEngine development server.
To demonstrate an issue i created a gradle demo project It works just fine if deploy to real AppEngine standard environment instance but does not work with local dev server.
The steps to reproduce:
Eventually got
Jan 24, 2017 7:25:40 PM com.google.appengine.tools.development.devappserver2.RemoteApiDelegate log SEVERE: [1485285940023000] javax.servlet.ServletContext log: unavailable com.google.appengine.tools.remoteapi.RemoteApiException: response was a python exception: cgoogle.appengine.runtime.apiproxy_errors ApplicationError
My question is how to run Google Endpoints Framework V2 localy?
Upvotes: 5
Views: 926
Reputation: 315
The solution found by the original poster was to set the <version>
tag inside his appengine-web.xml file. A description of this tag can be found on the README
of this Github helloworld java-docs-samples repository.
Upvotes: 1
Reputation: 2595
In build.gradle
, change
compile 'com.google.endpoints:endpoints-management-control-appengine:1.0.0'
to
compile 'com.google.endpoints:endpoints-management-control-appengine:1.0.1'
Upvotes: 0