Author: Benjamin Perkins

Using the Azure WebJob API

Azure App Service Benjamin Perkins

I wrote an article here that discusses how to troubleshoot a WebJob, during the creation of that post I found decided to figure out this technique as well (calling the WebJob API). Originally, I was using the Azure SDK to trigger the WebJob from Visual Studio Server Explorer, as shown in Figure 1. Figure 1, […]

Read More →

Using HTTP/2 with ARR and IIS 10

IIS Benjamin Perkins

I was asked a question about if the Application Request Router supports the HTTP 2 protocol on IIS 10 (not sure what it will be called). I was pretty confident that it did, but nothing beats a test to confirm it. So that is what I did. I used this article here that contains some […]

Read More →

ASP.NET 5 renamed to ASP.NET Core 1.0

ASP.NET Benjamin Perkins

I was reading this article here which made a lot of sense. There was a bit of confusion on my part that was touched on as originally I assumed that ASP.NET 5 was the newer version of ASP.NET 4.6 while in fact it was a whole new branch of the feature. With branch I mean, […]

Read More →

Why is my ASP.NET application recycling, restarting

ASP.NET Benjamin Perkins

When you are experiencing slowness with your ASP.NET application, one place to check is if the application is being recycled. If the application is being recycled over and over again, then sessions and application settings are lost and it has a pretty big impact on your users and customers. A place to begin your investigation […]

Read More →