kestrel Questions

1

Solved

I have a project with asp.net core 2.2 in windows os. I deploy the project and run with kesterl with this command: dotnet myapp.dll that's run in http://localhost:5000. I need to run the websi...
Nonstop asked 27/7, 2019 at 11:23

1

When I researched hosting of .NET core mechanism I saw this comment at lots of forums and website "Microsoft suggests always using any web server in front of Kestrel for websites." Why? Because of ...
Pebbly asked 14/4, 2019 at 22:3

2

Solved

I have this in a Startup.cs file for a small project for a webserver hosting static files with Kestrel: public class Startup { public void ConfigureServices(IServiceCollection services) { servi...
Berryberryhill asked 17/11, 2017 at 13:25

2

Solved

I'm trying to create a very simple API with .net Core, and am exploring Kestrel. I am following the directions on this MS tutorial: https://learn.microsoft.com/en-us/aspnet/core/fundamentals/server...
Contribution asked 16/2, 2019 at 11:28

3

Solved

ASP.NET Core apps running in Linux containers use a case sensitive file system, which means that the CSS and JS file references must be case-correct. However, Windows file system is not case sensi...

1

Under ASP.NET with .NET Framework, you can perform a "hot deploy" of new code without disruption. This works because IIS can juggle multiple app domains for the same application: when new code arri...
Unclothe asked 3/4, 2019 at 20:39

2

I am trying to implement an asp.net 2.2 application to serve HTTP requests with the lowest possible latency (not throughput, it's not for production but some sort of a competition). The application...
Angadreme asked 9/1, 2019 at 4:38

1

I host my ASP.NET .NET Core 2.1 project in Azure Web App service. I recently upgraded to 2.1 (From 2.0) and I started getting these errors: The specified CGI application encountered an error and...

0

The event viewer shows the following errors The worker process failed to pre-load .Net Runtime version No Managed Code. The worker process failed to initialize correctly and therefore could not ...
Upcast asked 29/8, 2018 at 21:55

0

I am having a few problems implementing a basic SSL server using Kestrel on .Net Core. My aim is to eventually create my own Alexa skill end point, which I already have a basic version running on ...
Orabelle asked 8/7, 2018 at 19:30

1

Solved

I am trying to cancel Task running in Asp.net Core Action. For that I am using this github sample. I can cancel task if running service in console, but if I run under IIS (or IIS Express) task is n...

1

I have an api used by my angular application developed in asp.net core 2.0 Its been deployed in IIS and configured to use kestrel. I read Kestrel is not safe when exposing the application publicly...
Clot asked 24/4, 2018 at 9:21

1

Solved

Could anyone explain to me why my server stopped for no reason? below my IHostedService implementation: public class HostServiceBox : IHostedService { public Task StartAsync(CancellationToken canc...
Recusant asked 27/2, 2018 at 10:39

0

i'm facing problem when implementing ssl to my web. My web work as web services for android and ios. All goes very smooth until i implement the SSL certificates, suddenly the android (most of andro...
Elishaelision asked 24/1, 2018 at 15:43

1

I'm trying to create an async view component for ASP.NET Core 2.0. It will do an action that should be cancelled when the user navigates away from the page. I've got the following options: Using ...

1

Solved

We have an application that uses Kestrel to serve HTTP requests. We've had some problems in the past where high load caused the thread pool to spawn thousands of threads, at which point we would ge...
Radke asked 10/5, 2017 at 14:41

1

Solved

I have a .net core app that I want to run in background, but I can't seem to get rid of the console window of Kestrel. Is there any way to hide it without running the app as a windows service...
Ias asked 19/7, 2017 at 20:25

1

Solved

In classic .NET applications, I'd set up my local IIS to run the specified application. I could build the application and hit the endpoint to see the change immediately. I did not need to launch th...
Jandy asked 6/4, 2017 at 10:0

© 2022 - 2024 — McMap. All rights reserved.