04-28-2010 09:32 AM
I am using scheduleApplication to schedule my app to wake up and refresh some data....on the simulator this works flawlessly, but on my actual device (Curve 8500) nothing happens. The method returns true and it's scheduled to fire 30 minutes later, but when the time elapses nothing is firing. App is also signed properly. Any ideas?
04-28-2010 09:38 AM
schedule your app in 1min, set a breakpoint and put some sysouts and check if it works.
04-28-2010 09:53 AM
Yeah I tried that and nothing is firing, not even main()....almost like the device either cannot find the app or doesn't actually try to fire it.
04-28-2010 10:25 AM
Can you show us some of the code you are using for it?
04-28-2010 03:45 PM
Found the problem, in the main() I was initially creating a http connection and it was throwing a "Tunnel Failed" exception and bombing out. Just need to figure out that problem now.