Summary
This chapter provided an overview of various network channels that can be used in Xamarin applications to create connected applications.
Web services are definitely on the essentials list for modern mobile applications because of the interoperability of the protocols in place for web services (both SOAP/XML and REST/JSON). Unfortunately, XML services are a little harder to integrate with Windows Phone 8.1 runtime (even though they are still supported by Windows Phone Silverlight runtime) because the Windows Communication Foundation client infrastructure is not included in Windows Phone runtime. However, the same RESTful service proxies can be used by applications on each Xamarin target platform and Windows Phone.
Cloud integration options such as mobile services and Azure Active Directory were discussed with demonstration samples. Each of these technologies provides additional connectivity and integration opportunities for Xamarin mobile apps. SignalR is another web technology that...