Comment out the 'loadtest' backend in the 'counter' backend sample so that it does...
[gae-samples.git] / retrieving-gdata-feeds-java / README
blob55d43ad769eab02cfc0eb48b8a313fb82091d6c2
1 google-app-engine-samples -- retrieving-gdata-feeds-java
3 retrieving-gdata-feeds-java is a simple Java web application demonstrating how
4 to access private Google Data feeds using Google's AuthSub authentication
5 interface.
7 This application is packaged as a Google App Engine application. To run it,
8 follow these steps:
10 1. If you haven't already, download the latest Google App Engine SDK for Java
11    from http://code.google.com/appengine/downloads.html and unzip it.
12 2. Modify the second line of the build.xml file, updating the sdk.dir property
13    to point to the location of your downloaded SDK.
14 3. To run the application on the App Engine development server, open a new
15    command line window, navigate to the ThirdLeg directory, and execute
16    'ant runserver' -- now access your app at http://localhost:8080/.
17 4. To deploy the application to App Engine's production environment, register a
18    new application ID at http://appengine.google.com, add this new ID between
19    the <application></application> tags in war/WEB-INF/appengine-web.xml, and
20    execute 'ant update' from the command line. Note that you may need to use
21    the SDK's appcfg.cmd utility to input your account credentials before you
22    can use this particular ant target -- see
23    http://code.google.com/appengine/docs/java/tools/uploadinganapp.html.