Azure App Service Plans (ASP)

Azure App Service Benjamin Perkins

There is a great overview of Web Hosting Plans here, so this blog is not about what they are but 2 experiences I have had with them. Why do I think they exist now How I recently cleaned up my subscription with them For someone who has been using Azure App Services for some time […]

Read More →

Using Network Tracing to debug System.Net based issues

Visual Studio Benjamin Perkins

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 →