Communication between a desktop application and a web application
suggested using a service. What specifically can be used by both WPF and WP app? WCF services are consumed easily by WPF, but not so easily by WP app:
I wouldn't like to use it like that, with the suggested workaround.
I saw in Visual Studio that I can add azure mobile service reference to both WP and WPF. Would this then be the way to go, to use common repository with both applications?
Honestly, world is shifting towards using REST services. We, for instance, create a web api mvc application and put the logic there. Then, in projects that are clients of these services, we use RestSharp library (really good wrapper over webclient) to query our web api services in the same time knowing that restsharp will translate our models (objects) to json and the other way arround.