I have worked on a number of cases where web services or URLs are called using a code segment like the below code snippet. HttpWebRequest request = (HttpWebRequest)WebRequest.Create(URL); HttpWebResponse response = (HttpWebResponse)request.GetResponse(); The result of the GetResponse() method is some kind of error, for example a Timeout Exception, which is not always brought up to […]
Read More →Tags: .NET
How I got HTTPS to work with the .Net Micro Framework and my Gadgeteer
I have begun my pursuit of the Internet of Things (IoT) via the .NET Micro Framework and a FEZ Spider. I am currently using the following SDKs: .NET MF 4.3 RTM (QFE1) .NET Gadgeteer NETMF and Gadgeteer Package 2014 R3 When I was trying to make a connection to my Azure Blob Storage, I was […]
Read More →