I have the exact same problem right now ... is the appengine down?

note that I see the 404 errors in the app engine  Logs (Main -> Logs),
so it looks that the HTTP request reaches "something" in the app
engine infrastructure

On Aug 22, 11:11 pm, Shack <shack1...@gmail.com> wrote:
> Hi,
>
> I followed all instructions for the GuestBook application (no GWT) and
> deployed it onto the AppEngine. I am using Ubuntu 9.04 + Eclipse 3.5 +
> Google AppEngine 1.2.2.
>
> The application is running perfectly on my local machine. However I
> have no output athttp://anudemoapp.appspot.com/.
>
> When I use Deploy App Engine Project, this is the output that I get:
>
> Creating staging directory
> Scanning for jsp files.
> Compiling jsp files.
> Compiling java files.
> Scanning files on local disk.
> Initiating update.
> Cloning 2 static files.
> Cloning 28 application files.
> Uploading 1 files.
> Uploaded 1 files.
> Deploying new version.
> Will check again in 1 seconds
> Will check again in 2 seconds
> Closing update: new version is ready to start serving.
> Uploading index definitions.
> Deployment completed successfully
>
> The appengine-web.xml listing is:
>
> <?xml version="1.0" encoding="utf-8"?>
> <appengine-web-app xmlns="http://appengine.google.com/ns/1.0";>
>         <application>anudemoapp</application>
>         <version>1</version>
>
>         <!-- Configure java.util.logging -->
>         <system-properties>
>                 <property name="java.util.logging.config.file" value="WEB-INF/
> logging.properties"/>
>         </system-properties>
>
> </appengine-web-app>
>
> The web.xml listing is:
>
> <?xml version="1.0" encoding="utf-8"?>
> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
> xmlns="http://java.sun.com/xml/ns/javaee";
> xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd";
> xsi:schemaLocation="http://java.sun.com/xml/ns/javaeehttp://java.sun.com/xml/ns/javaee/web-app_2_5.xsd";
>  version="2.5">
>         <servlet>
>                 <servlet-name>GuestBook</servlet-name>
>                 <servlet-class>guestbook.GuestBookServlet</servlet-class>
>         </servlet>
>         <servlet-mapping>
>                 <servlet-name>GuestBook</servlet-name>
>                 <url-pattern>/guestbook</url-pattern>
>         </servlet-mapping>
>         <servlet>
>         <servlet-name>sign</servlet-name>
>         <servlet-class>guestbook.SignGuestbookServlet</servlet-class>
>     </servlet>
>     <servlet-mapping>
>         <servlet-name>sign</servlet-name>
>         <url-pattern>/sign</url-pattern>
>     </servlet-mapping>
>         <welcome-file-list>
>                 <welcome-file>/guestbook.jsp</welcome-file>
>         </welcome-file-list>
> </web-app>
>
> Any help will be highly appreciated. Thanks.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to google-appengine-java@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine-java+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to