I've a WCF service which must be executed in a separated application domain (not in ASP.NET app domain).
I'd like to decouple my WCF service from my web server (IIS) because of various deployment scenarios of my application. (Note: This is a primary benefit of Owin when you're working with OWin & Web API).
I can run WCF Service without routing service in separated application domain, or I can run WCF Services with routing configured in the ASP.NET app domain and the service in a separated app domain within customized SynchronizationContext for WCF dispatch runtime.
But I'd like to use better methods.
Is it possible to run WCF service with routing in separated application domain?