Problem connection to WCF service in xamarin forms windows uwp

0

Good afternoon, you see, I'm trying to connect a xamarin forms solution with the sqlserver database. I have developed a wcf service in visual studio, which makes this connection. In Android and I have been able to add that service as a web reference and the connection is done correctly, the problem comes in windows.

I need to install this service on a server machine, and that the rest of the computers when they run the application of xamarin forms on windows 10, you connect with it through that service. If I add the service as a service reference being installed on my computer and using localhost the connection is done correctly, but when instead of using localhost I use the ip of the machine gives me a connection error with denied access, even having the firewall deactivated.

The error it gives me is the one in the image below:

I would like that service to listen on a server machine, and that the rest of the machines connect to it without having to install the service in the IIS of each computer in each one. I wish someone had this problem and could have solved it.

    
asked by Marcos Muñoz Morales 26.01.2018 в 13:26
source

1 answer

0

Maybe you lacked adding the Capability "Internet (Client)" to the UWP app manifest?

    
answered by 26.01.2018 / 14:25
source