Hosting a self-hosted WF in IIS
Does anyone know if it's possible to host a self-hosted WorkflowServiceHost application in IIS without turning it into a XAMLX file? If so, how? Furthermore, does anyone have any good guidelines for deploying XAMLX files in general to IIS 7? Thanks in advance You can do the same basic thing by writing your own hosting engine instead of the XAMLX one. You can then load applications via ASP.NET, but have complete control on it's lifespan/lifecycle. You have to create your own host to load the .XAML workflows into something like a WorkflowApplication and manage the lifespan of that workflow. It