Possible Duplicate:
How to run application in background in Windows Phone?
I am investigating Windows Phone 8 SKD for examples on how to create a task (FTP write to be precise) that would be executed periodically even if the application is in the background.
The documentation points me to Background Agents because the Background Transfer Service "only supports transfers using HTTP and HTTPS. FTP is unsupported". I have been trying and testing the samples, everything is working (more or less) except for the fact that Background Agent event time cannot be setup. According to the documentation "Periodic agents typically run every 30 minutes" and no method/class/constructor has a time/date parameter. You have ScheduledActionService.LaunchForTest(task, Time) but it is to be used only during debug time, not in production, and can make MS reject your app from the market.
Is there any solution or workaround to make my agent fire up every minute?