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

Kestrel error when sending a request from an emulator

When making a request to Kestrel via Fiddler, the following request succeeds. GET http://192.168.1.148:5000/ HTTP/1.1 Host: 192.168.1.148:5000 Connection: keep-alive When making the request thru the NETMF Emulator, the following request fails. GET…
Shaun Luttin
  • 133,272
  • 81
  • 405
  • 467
0
votes
1 answer

set base path in IISExpress and webapi in ASP.NET 5

I need to have WebAPI project working under different base path than usual. I created simple project under Visual Studio that uses WebAPI and ASP.NET 5. Under base path set to http://localhost:38170/ my project works fine and I'm able to get values…
0
votes
1 answer

How do the assembly file paths get resolved on published ASP .Net 5 Applications?

After publishing my ASP .net 5 project to IIS, I was getting an error: System.TypeLoadException: Could not load type 'Microsoft.AspNet.Builder.RequestDelegate' from assembly 'Microsoft.AspNet.Http.Abstractions' According to a few posts it…
Tjaart
  • 3,912
  • 2
  • 37
  • 61
0
votes
0 answers

http request to localhost kestrel server hangs when using node.js client

I have some http testing tools written in node.js that I'm using to test my kestrel server on localhost. Node.js makes the request but then seems to hang and timeout. I can see in the kestrel logs that the http request is made, and making the…
MonkeyBonkey
  • 46,433
  • 78
  • 254
  • 460
0
votes
1 answer

CGI errors when hosting on Azure

I have a website that runs fine on my local IISExpress but when I upload it to Azure it is tediously slow and often returns an error: The specified CGI application encountered an error and the server terminated the process In project.json I have…
Sean
  • 14,359
  • 13
  • 74
  • 124
0
votes
1 answer

Deploy ASP.NET 5 on Azure WebApps behind IIS

I have a problem with obtaining IP address of client who sent a request to a ASP.NET 5 application hosted on Azure WebApps. My project uses ASP.NET 5 + MVC6 and runs on full CLR runtime (not CoreCLR). I've searched through the net for the answer,…
0
votes
0 answers

Will IIS be able to handle SSL with the new IIS Platform Handler?

With latest updates the new IIS Platform Handler was introduced. And I am wondering, will I still be able to setup SSL in IIS as I was able before, or it will now have to be set up in Kestrel somehow? What can still be set up in IIS at all after…
Ilya Chernomordik
  • 27,817
  • 27
  • 121
  • 207
0
votes
1 answer

How does web server chooses framework (dnx451 vs dnxcore50)

I have this setup in project.json: "frameworks": { "dnx451": { }, "dnxcore50": { } }, When I run the application either in Kestrel ("web" command) or in the IIS Express, how do they know which framework to use out of those 2, how does it…
Ilya Chernomordik
  • 27,817
  • 27
  • 121
  • 207
0
votes
1 answer

Removing Kestrel from ASP.Net 5 'empty' project

I've made an 'empty' ASP.Net 5 project in Visual Studio 2015. The project.json file contains these lines "dependencies": { "Microsoft.AspNet.IISPlatformHandler": "1.0.0-rc1-final", "Microsoft.AspNet.Server.Kestrel":…
dumbledad
  • 16,305
  • 23
  • 120
  • 273
0
votes
1 answer

dnx web error 500 when try to execute

I'm trying to execute in a Mac (El Capitán), the MusicStore example in ASP.NET from the official repository. I have tested it using mono and core, switching in dnvm, but no results. The dnu build is working fine with mono, with core, the build…
chemitaxis
  • 13,889
  • 17
  • 74
  • 125
0
votes
2 answers

DNX beta8 keeps reinstalling when opening solution

I am trying to update from ASP.NET 5 beta8 to RC1. I have no references to beta8 whatsoever in my projects, but when opening my solution, I see the following happening in the DNVM console in Visual Studio: Installing to…
Dave New
  • 38,496
  • 59
  • 215
  • 394
0
votes
0 answers

How do you debug an existing MVC project on a mac/apple with "Visual Studio Code"?

I'm working on an ASP.net MVC project using Visual Studio 2015 on a Windows 10 machine. I need to coordinate with a designer who uses Mac exclusively which means using VS Code. Naturally, she needs to be able to do simple things like open a project,…
0
votes
1 answer

ASP.NET 5 MVC 6 Beta 8 - Do I have to use kestrel with IIS Express?

Working with ASP.NET 5 MVC 6, Beta 8. Using IIS Express in a local dev windows 10 environment with IE Edge as my browser, but I noticed that IIS Express won't server the page without have a reference to Microsoft.AspNet.Server.Kestrel in my…
0
votes
0 answers

How to run multiple sites in Kestrel on Azure Asp.NET MVC 5?

I want to start multiple sites at one Azure host. But I can't find any information about ASP.NET MVC 5. Is it possible? Thank you.
mr__brainwash
  • 1,334
  • 3
  • 16
  • 40
0
votes
0 answers

Cannot run vNext DNXCore 5 Application on Linux

I have a DNXCore5 application that I've been very careful about only targeting DNXCore. Anyway I can publish it to Windows Server 2012 R2 fine with a very small amount of steps. I'm trying to do the same in Ubuntu. I've set up my environment and…
Nick
  • 1,015
  • 12
  • 31
1 2 3
54
55