user2849415
user2849415

Reputation: 169

google app engine project: Server Error The server encountered an error and could not complete your request

when I executed my web app engine project in java for login application it showed this error can any one help I am using eclipse kepler java 1.7 in my system I am not getting any exception. enabled data store also. Error: Server Error The server encountered an error and could not complete your request.

If the problem persists, please report your problem and mention this error message and the query that caused it.

Upvotes: 16

Views: 39355

Answers (5)

Kei
Kei

Reputation: 174

In my case, a similar error occurred because the credit card I had set up for my billing account was being expired. This is my case, I hope it helps

Upvotes: 0

A.T Rayan
A.T Rayan

Reputation: 169

in my case too i forget to change the start operation from :

"start": "nodemon server.js",

to:

"start": "node server.js",

Upvotes: 1

Veso
Veso

Reputation: 61

In my package.json file, for example I was missing node at front of main.js.

"start": "**node** main.js"

And it was throwing that error.

Upvotes: 3

mirin
mirin

Reputation: 1

I had the same issue with deploying my web application. I had forgot to set a redirect uri for authentication

Upvotes: -1

Romin
Romin

Reputation: 8816

The message indicates that there has been a problem while trying to startup your App and serve your request.

I suggest the following:

  • Visit the Administration Console for your application. Check out the Logs and see if there is any message indicating the problem.
  • Alternately, I also suggest that you look at your log4j.properties and configure the level to a lower level than is present for e.g. INFO or DEBUG. This might throw up more information around the problem.

Hope this helps.

Upvotes: 17

Related Questions