0

I am developing a Windows 10 application which should download data up to 30mb data from mobile service(written) and store it in local db. This should be performed every day when connected to WIFI network.

Can anyone help me out with this scenario.

Thanks in advance

Trilok

1 Answers1

2

This is quite definitely doable with Azure Mobile Apps.

Use Azure Mobile Apps to write the main backend. You can start with the QuickStart backend and then modify for your particular scenario. Just follow the QuickStart tutorial for offline sync (and probably authentication). I've produced a QuickStart for Windows 10 UWP. In your Windows 10 application, only call the UpdateAsync() method when you are on Wifi. You can look at this question to detect wifi vs. cellular.

Community
  • 1
  • 1
Adrian Hall
  • 7,990
  • 1
  • 18
  • 26