Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google App Engine Error 503 - Service Unavailable

For the past couple of days, every time I try to run my web application, Error - 503 has been showing up. This happens even when I try to go to the admin page. Is this a problem with Google?

like image 486
dev123 Avatar asked Feb 19 '12 08:02

dev123


People also ask

What does error 503 mean?

The HyperText Transfer Protocol (HTTP) 503 Service Unavailable server error response code indicates that the server is not ready to handle the request. Common causes are a server that is down for maintenance or that is overloaded.


1 Answers

It's important when creating a GAE project that any .class that extends HttpServlet and are used as entry point to your Google App are mapped in web.xml found in war/WEB-INF as pictured below.

Project Hierachy

Java Servlets you create that extend HttpServlet must be mapped in the web.xml like the following:-

web.xml

In this Test GAE project ecipse generated sample code that created a Java Servlet called TestServlet.class that extends HttpServlet and is appropriately mapped.

To run your app you need to include the url mapped to the TestServlet.class found in the web.xml (In this case /test) in your index.html. (In the case of generated project sample code created by eclipse this will already have been done).

Once your Java Servlets are correctly mapped in the web.xml and included in your index.html the mapped url that is clicked will invoke the appropriate Servlet and run your app.

This will eliminate common 503 errors in terms of new project setup.

like image 130
Ben B Avatar answered Sep 22 '22 08:09

Ben B