OLD | NEW |
(Empty) | |
| 1 Echo Service |
| 2 ============ |
| 3 |
| 4 The echo service is a service that echos a request back to the caller. Useful |
| 5 for testing and illustrates all data types in the forms interface. |
| 6 |
| 7 Google App Engine |
| 8 ================= |
| 9 |
| 10 For more information about Google App Engine, and to download the SDK, see: |
| 11 |
| 12 http://code.google.com/appengine |
| 13 |
| 14 Running locally |
| 15 =============== |
| 16 |
| 17 ProtoRPC is packaged with the App Engine SDK, but the version shipped |
| 18 may not be the most current version due to the App Engine release |
| 19 schedule. If you'd like to use the most current version of ProtoRPC, |
| 20 you can install it in the echo directory. |
| 21 |
| 22 For example on a unix-like OS, you could either copy: |
| 23 |
| 24 $ cp -r $PROTORPC/python/protorpc $PROTORPC/demos/echo |
| 25 |
| 26 or symlink the directory: |
| 27 |
| 28 $ ln -s $PROTORPC/python/protorpc $PROTORPC/demos/echo/protorpc |
| 29 |
| 30 To run this demo locally, you need to run an instance of the Google App |
| 31 Engine dev-appserver. The server defaults on port 8080. |
| 32 |
| 33 Example on a unix-like OS: |
| 34 |
| 35 $ python $GAE_SDK/dev_appserver.py $PROTORPC/demos/echo |
OLD | NEW |