After a WCF service has been created, is there any way to deploy it without IIS? The service I’ve created will only be used within the LAN, and I’d rather not have the host run an ASP.NET server just to host the WCF service.
The other reason I need to be able to do this is because one of the DLLs I’ll be using doesn’t really work well with ASP.NET.
You can host a WCF service in any EXE, not just a Windows Service. You have to write some code to host, but it’s trivial:
BTW, if you deploy using IIS, you get all the extras that IIS offers for free, including easy Web deployment, integrated security, and the ASP.NET event model.