While developing my WP8 app I got stuck while implementing offline mode. My mobile app is comunicating with server using WCF methods calls through https.
I'm already saving incoming data to my local storage for offline viewing. However my problem is I have no idea how to implement something like a message queue system for method calls.
If I was using JSON as a medium of tranfer, I could just save it in database and send the request when the mobile is online. With method calls I cannot do that.
Is there a way to delay the WCF method call until the client is online in my situation?
Thank you for your time and answers.