Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 669
user2849415 Avatar asked Oct 30 '13 07:10

user2849415


3 Answers

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.

like image 154
Romin Avatar answered Oct 12 '22 03:10

Romin


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.

like image 34
Veso Avatar answered Oct 12 '22 03:10

Veso


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

"start": "nodemon server.js",

to:

"start": "node server.js",
like image 31
A.T Rayan Avatar answered Oct 12 '22 04:10

A.T Rayan