doc/push.txt in rhoconnect-3.4.5 vs doc/push.txt in rhoconnect-4.0.0.beta.10

- old
+ new

@@ -1,14 +1,29 @@ Push Synchronization === Use push synchronization when you want to automatically detect changes on the RhoConnect side, and you want to push those changes to your client without having to tell your client to sync. -RhoConnect has a simple ruby API for sending push notifications (a ping call) to a user's devices. This API can be called directly, queued as a resque job, or called remotely via the [RhoConnect REST API](/rhoconnect/rest-api). The push message can trigger the following actions in the rhodes application: alert with a message, sync one or more sources, vibrate, display a badge, and play a sound file. +RhoConnect has a simple ruby API for sending push notifications (a ping call) to a user's devices. This API can be called directly, queued as a resque job, or called remotely via the [RhoConnect REST API](/rhoconnect/rest-api). The push message can trigger the following actions in the Rhodes application: alert with a message, sync one or more sources, vibrate, display a badge, and play a sound file. -The following sections show how to use the RhoConnect application to deliver push messages on each platform and how you can handle the push notification in your Rhodes application. +The following sections show how to use the RhoConnect application to deliver push messages to each client platform and how you can handle the push notification in your Rhodes application. -You will need to perform the following tasks. +## Setting up Server and Client -* [Set up the configuration settings in the RhoConnect application](/rhoconnect/push-server-setup) for your mobile client operating system. -* [Execute a ping call](/rhoconnect/push-backend-setup) from your RhoConnect source adapter or from your backend application that uses a RhoConnect plugin. -* [Set up push notification support](/rhoconnect/push-client-setup) -- receiving push notifications from the RhoConnect server/backend -- on your Android, Blackberry, or iPhone client application. +You will need to perform one of the following set of instructions on the RhoConnect server and your mobile device for your specific platform. + +* [Set up RhoConnect Push Service on client and server](/rhoconnect/push-client-setup-rps). +* [Set up RhoConnect Push on client and server for Rhodes Android Client](/rhoconnect/push-client-setup-android). +* [Set up RhoConnect Push on client and server for Rhodes Blackberry Client](/rhoconnect/push-client-setup-bb). +* [Set up RhoConnect Push on client and server for Rhodes iOS Client](/rhoconnect/push-client-setup-ios). + +Then you will need to [perform the final set up on your client](/rhoconnect/push-client-setup). + +## Executing a Ping Call + +RhoConnect has a simple ruby API for sending push notifications (a ping call) to a user's devices. You can [execute a ping call from your RhoConnect source adapter or from your backend application that uses a RhoConnect plugin](/rhoconnect/push-backend-setup). + +## Testing Push + +You can [test push from the RhoConnect console](/rhoconnect/push-testing). + +