tags:

views:

54

answers:

2

I'm a student.

today i meet the problem.

i need technic can control the android machine from server.

then i want send data from server to android with no request from android.

if anyone has this technic help me.

+3  A: 

This is called a server side 'push' and is commonly referred to as 'pushing'. This is a well known feature of the iPhone, however, it does not currently exist on the Android. Android Cloud 2 Device messaging has not yet been released to the general development community. you may want to check out projects such as MQTT and Deacon.

BeRecursive
A: 

You might consider using Googles cloud to device messaging for a solution. You'll have to sign up for an account and are only able to use AppEngine servers at the moment.

Your application has to use API level 8 (2.2) in order to be able to receive the cloud's pushes.

Keyboardsurfer