First I would like to say excellent job on the network stack so far.
I am using version .45 and having an issue with the HttpClient class. Using the Basic Wifi sample on github without changes works fine.
However if I do this for example:
GetWebPageViaHttpClient(“https://microsoft.com/”).Wait();
I get an exception “System.Net.Sockets.SocketException: No such host is known”.
The same thing works fine in a desktop application. In addition If I do this in the meadow app:
var addresses = Dns.GetHostAddresses(“microsoft.com”);
It seems to be able to resolve the address no problem.
Thanks,
Eric