Better exception details with ASP.NET Core

By default, ASP.NET Core suppresses Exceptions on Startup on external environments. So you only get Exceptions in Startup on localhost.

Sometimes, especially on remote hosts like Azure, AWS or hosted virtual machines you deploy your app and you only get:

This does not help, if you do not log this error to an external data blob like Application Insights.

Enable error details

Often this happens if you forget to copy a dependency or have a typo in your settings files. But this is hard to debug! Also, the entire application process cashes, which is the reason you cannot normally attach a debuger (it never worked for me!).

To get a better error detail you have to activate detailed errors.

Open your program.cs and add .UseSetting("detailedErrors", "true") and .CaptureStartupErrors(true).

It now should look like

 1
 2namespace BenjaminAbt.ErrorHandlingSample
 3{
 4    public class Program
 5    {
 6        public static void Main(string[] args)
 7        {
 8            var host = new WebHostBuilder()
 9                .UseKestrel()
10                .UseContentRoot(Directory.GetCurrentDirectory())
11                .UseIISIntegration()
12                .UseApplicationInsights()
13                .UseStartup<Startup>()
14                .UseSetting("detailedErrors", "true")
15                .CaptureStartupErrors(true)
16                .Build();
17
18            host.Run();
19        }
20    }
21}

Now you get on remote a detailed error page, too.

ASP.NET Core - Teil 2: die Middleware

Sep 17, 2016 - 2 min read

ASP.NET Core - Teil 2: die Middleware

Bereit bei ASP.NET 4 konnte man mit Hilfe von OWIN - Open Web Interface for .NET - Middleware-Implementierungen sehr einfach und robust …

ASP.NET Core - Teil 1: die Basics

Sep 05, 2016 - 3 min read

ASP.NET Core - Teil 1: die Basics

Seit Ende Juni steht ASP.NET Core 1 als RTM zur Verfügung - und es erfreut sich großer Beliebtheit! In diesem mehrteiligen Beitrag möchte …

ASP.NET Core - hello world

Aug 29, 2016 - 1 min read

ASP.NET Core - hello world

Hello world Hier ein vollständiges und minimales Beispiel, wie eine simple Hello World Anwendung in ASP.NET Core 1 aussehen kann:


Let's Work Together

Looking for an experienced Platform Architect or Engineer for your next project? Whether it's cloud migration, platform modernization or building new solutions from scratch - I'm here to help you succeed.

New Platforms
Modernization
Training & Consulting