I have an android app which receive data from web service and insert it to android's local database. This data flow is begun with a button in app's admin panel. I mean, an author login to admin panel in device and click the "Start Sync" button and device's database start to sync with SqlServer database.
I want to do is trigger this event from remote server. In other words, I want this process to begin as if someone clicks the "Start Sync" button, when I click the button in an web application. Let this web application is server and the devices are clients. I want this process to be triggered for all clients (broadcast).
How can I achieve this ? Thanks.