Is it possible to self host asp.net mvc inside another application ie. console, windows forms, service etc etc.
I\'d like to build an app that offers a web interface
I know this question is old, but it is still relevant, so with the .NET Core 1.0 + ASP.NET MVC 6 you can self-host your MVC application easily. You can even combine MVC and WebAPI applications into one, and you can decide later if you want to use IIS, IIS Express or the self-hosting feature of the .NET Core.
You can try it if you follow the Yeoman approach from this post: https://stackoverflow.com/a/30314393/980247
You can use "IIS 7.0 Hostable Web Core" and host the web server as part of any user process, even a console application. The benefit is that it is very similar to full blown IIS (incl config etc) but the web server itself is running in your process.
Have a look at the following articles:
Please have a look at http://cassinidev.codeplex.com/ It has many advantages for example
Hope this helps.