Search Results for: github

Auto Heal your Azure Web App

Azure App Service Benjamin Perkins

If your Web App is not behaving like you expect, you might consider implementing Auto Healing. Auto Healing for a Web App lets you take an action when certain events occurr, for example: When request count breaches a certain limit When requests are running slower that expected When an unexpected http status code is received […]

Read More →

Sending an email from Azure App Service using SendGrid

Azure App Service Benjamin Perkins

A common question I get is, “why doesn’t my SMTP email code that I wrote for my other website not work on Azure Web App?” Additionally, I sometimes get this exception sent to me, “System.Net.Mail.SmtpException: Transaction failed. The server response was: #.#.# Service unavailable; Client host […] blocked using; Blocked”. I also wrote an article […]

Read More →

Using KUDU with Microsoft Azure Web Apps

Azure App Service Benjamin Perkins

There is a nice set of troubleshooting and analysis tools for use with Microsoft Azure Web Apps (formerlly Web Sites) called KUDU. Information about that tool set can be found here. It is useful for capturing a memory dump, as explained here, looking at deployment logs, viewing configuration parameters and much more. To access your […]

Read More →

HTTP 404 after installing an SSL Certificate

IIS Benjamin Perkins

I was configuring an SSL certificate and once complete, when I attempted to access the website using https://localhost I started receiving a 404 error as shown in Figure 1. Figure 1, 404 HTTP Status after installing an SSL Certificate I tried some shots at troubleshooting the issue using Failed Request Tracing and LogParser to view […]

Read More →