ASP.NET and Windows Workflow's (WF) - do we need to stick it in the Application state? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T12:36:13Zhttp://stackoverflow.com/feeds/question/301090http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/301090/asp-net-and-windows-workflows-wf-do-we-need-to-stick-it-in-the-application-s0ASP.NET and Windows Workflow's (WF) - do we need to stick it in the Application state?Pure.Krome2008-11-19T05:42:38Z2008-11-20T14:04:49Z
<p>I've been trying to use WF in my ASP.NET application (actually, it's ASP.NET MVC .. but the fact that it's MVC instead of WebForms should not matter at all).</p>
<p>Now, i can run the WF and it works fine, etc.. but it kicks off ASYNCRONOUSLY, so any results from the WF (good <em>or</em> bad) get lost page life cycle.</p>
<p>So .. after crying like an emo for ages, i stumbled across <a href="http://msdn.microsoft.com/en-us/library/aa349445.aspx" rel="nofollow" title="please click me!">this gem on MSDN</a>!</p>
<p>If you've click that link, that MSDN article says that in ASP.NET applications, we need to </p>
<ul>
<li>Put the <code>WorkflowRuntime</code> into the Application state</li>
<li>The <code>WorkflowRuntime</code> instance has a <code>ManualWorkflowSchedulerService</code> added to it (whatever that is).</li>
<li>Use this application state workflow instance when required.</li>
</ul>
<p>this is opposed to (the way i learnt)</p>
<ul>
<li>Make the WorkflowRuntime a static object, that is first created when required.</li>
<li>Use this static WorkflowRuntime instance on the new workflow u are going to run.</li>
</ul>
<p>So .. which way is better? do we need to stick it into the application? What are the differences between either/or?</p>
<p>I understand there's actually TWO questions here...</p>
<ul>
<li>Application state vs static object (using lock/null or <a href="http://en.wikipedia.org/wiki/Double_checked_locking_pattern" rel="nofollow" title="click me!!">double null checking</a>)</li>
<li><em>DefaultWorldFlowSchedulerService</em> vs <em>ManualWorldFlowSchedulerService</em></li>
</ul>
<p>cheers!</p>
<p>EDIT:</p>
<ul>
<li>First question is answered <a href="http://stackoverflow.com/questions/303725/aspnet-application-state-vs-a-static-object" rel="nofollow" title="go! click click click">here</a>.</li>
<li>Second question is answered below.</li>
</ul>
http://stackoverflow.com/questions/301090/asp-net-and-windows-workflows-wf-do-we-need-to-stick-it-in-the-application-s/303354#3033543Answer by Panos for ASP.NET and Windows Workflow's (WF) - do we need to stick it in the Application state?Panos2008-11-19T21:01:51Z2008-11-19T21:01:51Z<p>I am not sure about your first question (although I <em>suspect</em> that they are equivalent). However, I am sure for the second question: You must definitely go with the <code>ManualWorkflowSchedulerService</code>. The main reasons are the following:</p>
<ul>
<li>It's the only way to block the execution of the host application until the workflow instance becomes idle. Note that you have to explicitly use the <code>RunWorkflow</code> method.</li>
<li><code>ManualWorkflowSchedulerService</code> reuse the thread that made the ASP.NET Web request to run the workflow instance. This ensures that at any time, the number of active threads in the workflow runtime equals the number of active Web requests in the ASP.NET process.</li>
</ul>
<p>Check <a href="http://www.codeproject.com/KB/WF/WorldWideDating.aspx?display=Print" rel="nofollow">this sample</a> for more.</p>