My company has an existing software product that, among other things, has a web service / mobile web site component that currently exists as an application within IIS. Since this application is hosted by each individual client (we don't currently offer centralized hosting, and probably won't for the forseeable future), this means that each customer's server has to have IIS installed and configured in order for our services to work.
We're going through the process of rewriting the application, and I'm investigating the possibility of removing the requirement for IIS. The variety of environments in which our application runs (everything from workstations running XP Pro to servers on 2008 R2), administering several different versions of IIS has become a support headache. We'd like to do something similar to what SQL Server Reporting Services did with 2008, where the functionality appears to be the same and the sites can cooperate with IIS sites, but IIS is not required, nor is it installed as part of the installer.
Our new application uses WCF to communicate via web services, and self-hosting WCF services easy enough. It's the web applications (i.e. serving HTML to browsers) that seems to be the hangup. One thing that's non-negotiable is that we need to be able to develop the sites within Visual Studio as ordinary ASP.NET web applications (Webforms or MVC), but we'd like to host them within our service.
I've looked at IIS Express and the IIS Hostable Web Core, but neither seems to fit what we're looking for; IIS Express is an external product requiring its own installer, and the Hostable Web Core requires IIS to be installed.
Is there anything out there that will allow us to embed a fully-functional ASP.NET-compatible web server within our Windows service?