Google app engine project: Server Error. The server detected an error and could not fulfill your request.

when I completed my Java web application project to enter the application, it showed this error, can someone help I use eclipse kepler java 1.7 on my system I do not get any exceptions. as well as data storage. Error: server error The server detected an error and could not fulfill your request.

If the problem persists, report your problem and indicate this error message and the request that caused it.

+6
source share
3 answers

A message indicates a problem while trying to run the application and complete your request.

I suggest the following:

  • Visit the Administration Console for your application. Check the logs and see if there are any messages indicating a problem.
  • Alternatively, I also suggest that you take a look at your log4j.properties and set the level to a lower level than is present, for example. INFO or DEBUG. This may cause additional information about this problem.

Hope this helps.

+6
source

Follow the list of actions in the developer console. This error may occur during the operation. After completing the pending actions, you can try again.

In my case, an action occurred with the following message:

Initialization of the computing engine for the project "YOUR_PROJECT_NAME"

After completing this operation, it works fine.

0
source

I had the same problem deploying my web application. I forgot to set uri redirection for authentication

0
source

Source: https://habr.com/ru/post/957008/


All Articles