Are there any incompatibilities of Windows Phone 8.1 with WCF services?
I am developing a Xamarin Forms App Portable application that uses WCF services, it works fine on Android, but it doesnโt work on Windows Phone 8.1 and there are no errors or exceptions.
I add a service link from Visual Studio and use it as follows:
IServicioWeb service = new ServicioWebClient(); var res = servicio.BeginMyValidateMethod(param1, param2, null, null); var res_client = servicio.EndMyValidateMethod(res);
source share