I try to write a windows mobile app that should call a webservice (Web Reference) every 5 Minutes. The App is working fine until I press the standby button.
I use SetUserNotification to handle the standby/sleep mode and used
CoreDLL.PowerPolicyNotify((int)PPNMessage.PPN_UNATTENDEDMODE, -1);
like described in various threads.
If I use
CoreDLL.SetPowerRequirement("WAV1:", (int)DeviceDriverPowerStates.D0, (uint)DevicePowerFlags.POWER_NAME, null, 0);
I am able to CoreDLL.MessageBeep(-1); whenever the method is called.
But if i want to call a method of my web reference instead of MessageBeep it doesnt work any more in sleep mode. It seems like the internet connection / network adapter has no power. I need to use a internet connection via gprs/umts/hsdpa, not a wifi connection.
I found no information about the device name that should be enabled via SetPowerRequirement for the internet connection.
What sould be done to be able to call a webreference in sleep mode? Please help me. I googled a lot. Nothing works. I cannot debug that because the phone is disconnecting from pc when I go into sleep mode.
The phone is a HTC HD2. Thanks a lot for your help.