Skip to content
Advertisement

Why I get a 500 only on kestrel?

I got a ASP.NET Core 2.0 WEB-API and it should work on kestrel because it will be hostet there. When I start with Kestrel (look at my launchSettings below) there is a POST and I always get a 500 returning without going into the code. Means I leave breackpoints everywhere and when I execute the POST in Swagger no breakpoint is hit. When I use IIS instead it works fine. The 500 comes straight away. 500 comes also after deployment on Linux Kestrel.

I implement @Startup.cs:

JavaScript

@Program.cs:

JavaScript

@launchSettings.json:

JavaScript

With Kestrel a POST call should process the Controller method with all it’s logic the same like with IIS.

Advertisement

Answer

I got it working with

JavaScript

and the launchsetting:

JavaScript

for local debugging.

To get it working as Service I did dotnet restore and dotnet build, that I copied only the folder with the created dll to a other place and than run / start the service. I guess when I start it I should be inside or just one folder above the dll folder. Now it works.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement