Is this possible using OWIN?

Is it possible to write a simple custom console application that includes the owin library, which can directly host the Asp.Net web application (without katana.exe, for example, the CassiniDev library)? Is it possible to enable an Asp.Net web application, including MVC 4, Web API, SignalR functions hosted in IIS and owin, rarely changing the code without changing the code?

+5
source share
2 answers

To host applications from the ASP.NET family of frameworks on top of OWIN, starting with this entry, you can do this using WebAPI and SignalR . If you need something more similar to MVC and Razor, you can look at the NancyFX web application platform . Future MVC support for OWIN may be included

+7
source

I did the initial implementation of the adapter at https://github.com/ashmind/Gate.Adapters.AspNet .
This is absolutely not ready for production, but if functionality is important to you, you can test / extend it.

As far as I know, there is no other reliable library for this.

0
source

All Articles