Reputation: 169
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
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
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
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
Reputation: 1
I had the same issue with deploying my web application. I had forgot to set a redirect uri for authentication
Upvotes: -1
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:
Hope this helps.
Upvotes: 17