My application is having activities and background service which has to run 24*7,

My application has to talk to the server via Wi-Fi to send and receive the information.

Problem: whenever any alarm send by the server my app should receive and pops up the app whether it is running in foreground or background and intimate to the user about the alarm.

So when device is in active state this feature working perfectly but when device goes to sleep mode, after 1 or 2 mins it disconnects from the server and stop communicating. so in order to resolve it I written code which will set the WiFi sleep policy to NEVER and acquire the partial lock in the OnCreate() method of Background service and releasing the lock in OnDestroy() method of the service.Now observation is for some time it is working fine means for 5 or 10 mins thereafter again it stop communicating.

App is developed on Android 2.1 and deployed on device supports Android 2.3 version.

I am not able to understand why partial lock behaves like this, please help me to resolve this issue.

regards, Piks.

link|improve this question

80% accept rate
have you set WAKE_LOCK permission in manifest? – endian Jan 25 at 11:33
feedback

3 Answers

My application is having activities and background service which has to run 24*7,

This is not possible.

Problem: whenever any alarm send by the server my app should receive and pops up the app whether it is running in foreground or background and intimate to the user about the alarm.

Please get rid of the service and use C2DM for your server to notify your device about the alarm.

link|improve this answer
what is C2DM and how to use it instead of Background service? please share some exmaples. – piks Jan 27 at 7:03
one more observation: when device goes to sleep mode and it is kept idle for some time, then when sever sends any annunciation data, device doesn't announce it but when I turned on the device, it immediately announce it and seems like my app is connected to the server, so not sure when device goes to idle mode for long time then what will be the state of background service.Please share your thoughts about it. – piks Jan 27 at 7:17
feedback

You could make your service a foreground service

link|improve this answer
feedback

You probably need a WifiManager.WifiLock, too:

WifiManager wm = (WifiManager) getSystemService(Context.WIFI_SERVICE);
wl = wm.createWifiLock(WifiManager.WIFI_MODE_FULL, "myId");
wl.acquire();

(where wl is your WifiManager.WifiLock, which s)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.