ASP.Net Hosting Workflow Runtime (WF4)

In WF 3.5, we used the ManualWorkflowScheduler service to host workflows in Asp.Net. What is the equivalent way to do this in WF4? Are new classes like WorkflowServiceHost or WorkflowApplication suitable for use in Asp.Net?

+2


a source to share


2 answers


Using WorkflowServiceHost works great in ASP.NET application. There is no way to reproduce the behavior of the ManualWorkflowScheduler where you can start a workflow until it is running, although all hosts except WorkflowInvoker are always asynchronous.



+1


a source


See ASP.NET WF4 / WCF and Asynchronous Calls for more information on how to use the Workflow Runtime with ASP.NET



0


a source







All Articles