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?

link|improve this question

feedback

4 Answers

up vote 4 down vote accepted

Take a look at CassiniDev, which doesn't require any installation:

http://cassinidev.codeplex.com/

link|improve this answer
+1, this looks like a great option. I was hoping for something supported rather than open source, but if this turns out to be my only legitimate option, then I'll accept. Thanks! – Adam Robinson Aug 31 '11 at 19:04
@Adam: I have been using it for a while now and haven't seen any issues. However if you want Windows Authentication integrated into the server then you have to tweak the code a little bit and then use it. – Cybernate Aug 31 '11 at 19:07
Have you been using it to self-host? If so, how are you giving it the application? Does it have to exist as a physical directory on the machine, or can I serve it from within memory? – Adam Robinson Aug 31 '11 at 19:19
Am not using it to self host, am using it as an alternative server. But I don't think self hosting it would be difficult though. – Cybernate Aug 31 '11 at 19:20
feedback

Is IIS Express an option? It supports versions back to Windows XP.

http://www.microsoft.com/download/en/details.aspx?id=1038

link|improve this answer
As I explained in the question, IIS Express is a standalone product; our aim is to do the hosting in-process. – Adam Robinson Aug 31 '11 at 19:03
Ok, I figured your main goal was to not have to support all the different versions of IIS. – Babak Naffas Aug 31 '11 at 19:06
feedback

A couple of other options include:

link|improve this answer
feedback

UltiDev Web Server Pro is a tiny (1.5 MB distro), free redistributable web server that can be bundled with your application installer as a prerequisite. It runs everything ASP.NET, although its WCF support is limited to basicHttp binding due to WCF expectation to be hosted by IIS if it's running under ASP.NET. Unlike IIS Express it has no dependency on .NET Framework 4 and can handle external requests.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.