I have a WCF service, up, running an tested, and an UWP app installed in two machines, app installation was made from the store.
Machine 1 has installed WCF service (IIS) and the app.
Machine 2 Has installed the only the app.
Both machines has the same w10 version 1803
Machine 2 Can run the app and access the service with no problems, but machine one app can't access the service.
The only thing i get from the app is:
Could not find the text associated with this error code. A connection to the server could not be established.
This is totally baffling for me.
This is a test environment. and really any idea could help.
Things I've tried
Allow developer mode -> result nothing :(
Change service address from name to fixed ip > result nothing :(
EDIT 1: Manually added this to my app Manifest
<Applications> <Application . . . > <Extensions> <uap4:Extension Category="windows.loopbackAccessRules"> <uap4:LoopbackAccessRules> <uap4:Rule Direction="out" PackageFamilyName="MyPFN" /> <uap4:Rule Direction="in" PackageFamilyName="MyPFN" /> </uap4:LoopbackAccessRules> </uap4:Extension> </Extensions> </Application> </Applications>
Result=> Nothing :(