Questions tagged [kestrel-http-server]

Kestrel is a HTTP server that is built-in to ASP.NET Core.

Kestrel is an open-source web server based on libuv and developed by Microsoft. The project home is on GitHub.

822 questions
0
votes
2 answers

.Net Core SSL file This page can’t be found No webpage was found for the web address:

I am trying to integrate SSL to my asp.net core project I download sslforfree file for manuel verification.I upload verify file to my server although there is file in server in path it give that error when browsing my website in browser This page…
user1688401
  • 1,851
  • 8
  • 47
  • 83
0
votes
1 answer

Service Fabric Service HTTP/REST communication OWIN/Katana vs ASP.NET Core

I've got a stateless Service Fabric service that continiously performs some operations. I need to implement simple HTTP communication with it from client side. I just need ability to turn it on/off and view if it is operating or not. If I don't get…
AsValeO
  • 2,859
  • 3
  • 27
  • 64
0
votes
1 answer

asp net core 2.0 mvc + kestrel - load MySql assembly on start of application?

I have an asp net core 2.0 mvc webpage using MySql, and the first request from a MySql database takes anywhere from 5-10 seconds to load, but any subsequent requests were much faster, about half a second each. Is there a way to load the MySql…
0
votes
0 answers

Does Kestrel server keep running when IIS / App pool craches

Does Kestrel server keep running even after IIS or app pool crashes because I want to make sure that if there is any operation that is in progress does not get impacted when IIS or app pool crashes?
Sanjay Sahani
  • 565
  • 4
  • 14
0
votes
0 answers

Error -4077 ECONNRESET connection reset by peer with Microsoft.AspNet.Server.Kestrel.Networking.UvException in Kestrel

I have been facing this exception, where in, following exception is logged in server: Error -4077 ECONNRESET connection reset by peer Microsoft.AspNet.Server.Kestrel.Networking.UvException: at…
RohitWagh
  • 1,999
  • 3
  • 22
  • 43
0
votes
1 answer

Serving embeded static files with Nancy 2.0 (clinteastwood)

I'm trying to serve static assets in the folder assets via Nancy. Here's the code that I am using in the Bootstrapper: protected override void ConfigureConventions(NancyConventions nancyConventions) { var assets =…
eltiare
  • 1,817
  • 1
  • 20
  • 28
0
votes
1 answer

How to set timeouts for long running operations in ASP.NET Core WebListener?

I would like to set request timeouts for my MVC Controller HTTP Post methods. I am using WebListener. I've found that if you are using Kestel and IIS you can set request timeout in web.config by specifying requestTimeout attribute on aspNetCore…
Lukasz Z
  • 1
  • 1
0
votes
1 answer

Error while running dotnet core api in IIS 8.5

On production server I am trying to run dotnet core api under IIS 8.5 i am getting error Application 'MACHINE/WEBROOT/APPHOST/MySite' with physical root 'D:\MyFolder\' failed to start process with commandline '"" ', ErrorCode = '0x80070057 :…
LP13
  • 30,567
  • 53
  • 217
  • 400
0
votes
1 answer

Server and Client error using HTTPS from code but works in browser

Running a freshly created IdentityServer4 Asp.Net Core based server. It "works" in the sense that it has been working without HTTPS, both in calls to authenticate and also to serve up some Asp.Net MVC views. I switched it to use HTTPS for my local…
0
votes
0 answers

Asp.NET Core Kestrel not using host configuration file

I have an Asp.NET Core project that is intended to be a multi-tenant application, but I'm having trouble configuring the project to use the host names I define in a hosting.json file. It works fine if I use UseUrls(), but I eventually need these…
Mike
  • 517
  • 2
  • 5
  • 21
0
votes
2 answers

Determining Hosting Environment While Configuring Kestrel and UseHttps

In the ASP.NET Core Main method below, how can I determine the hosting environment, so I can switch between different certificate files for HTTPS? public sealed class Program { public static void Main(string[] args) { new…
0
votes
2 answers

run ASP.NET Core (.NET 4.6.2) on Raspberry Pi 3 with mono

I have a ASP.NET Core (1.1.0) application wich is referencing the full framework (4.6.2) and is using the Entity Framework Core (1.1.0) and a SQLite databse. This is working fine under Windows 10 x64. Now I want to run this app on the Raspberry Pi 3…
0
votes
0 answers

Kestrel/IIS extremely slow on .NET 4.6.2

I have a NET 4.6.2 MVC (Frontend) which talks to a API (backend) via Rest and all of a sudden has become extremely slow on our test server. Other applications on the server appear fine, and running this application locally it's blinding fast. I've…
0
votes
1 answer

Why Startup's IConfigurationRoot is null?

I'm trying to pass command line arguments to Startup class. Following this example, I modified my Program class and it looks like this: var builder = new ConfigurationBuilder() .SetBasePath(Directory.GetCurrentDirectory()) …
nicks
  • 2,161
  • 8
  • 49
  • 101
0
votes
1 answer

.NET Core app (with Auth0) has short session/logout when hosted on IIS 8

(I posted this same message on the Auth0 Forum, but I'm asking here too in case it is not an authentication issue.) I have a .NET Core application that uses Auth0's Authentication API to authenticate Active Directory users. All of that works as…
wags
  • 149
  • 12