I´m using VS2015 to deploy a universal app to a Raspberry Pi 2 Model B running Windows 10 IOT Core (10.0.10240). Any usage of the HttpClient to call a WebService or retrieve some data like the following
HttpClient client = new HttpClient();
var re = await client.GetAsync("http://somehost/api/values/5");
yields an Exception from HRESULT: 0x80072EFD.
Capabilities
are set in the app manifest. Any suggestions?
Experienced the 0x80072efd problem. Appeared to be something with proxy settings gone wrong. The following worked for me (from admin command prompt):
netsh winhttp reset proxy
User contributions licensed under CC BY-SA 3.0