Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are these usages of OWIN possible?

Is it possible to write a simple custom Console Application that includes a owin library that can host a Asp.Net Web Application directly (without katana.exe, like CassiniDev's library)? Is it possible to let an Asp.Net Web Application including MVC 4, Web API, SignalR features hosted across IIS and owin, without / rarely changing code?

like image 855
victorwoo Avatar asked Jan 27 '13 13:01

victorwoo


1 Answers

For hosting applications from the ASP .NET framework family on top of OWIN, as of this post, you can do so with WebAPI and SignalR. If you need something more like MVC and Razor, you can look at using the NancyFX web app framework for that. Maybe in future versions of MVC OWIN support will be enabled

like image 98
cecilphillip Avatar answered Sep 28 '22 02:09

cecilphillip