Persistent workflow with durable delay activity hosted in ASP.NET
Posted
by Petr Felzmann
on Stack Overflow
See other posts from Stack Overflow
or by Petr Felzmann
Published on 2010-05-25T09:11:28Z
Indexed on
2010/05/25
13:21 UTC
Read the original article
Hit count: 788
The situation: a workflow hosted in ASP.NET application using WorkflowServiceHost
and contains durable delay. The workflow is currently inside the delay activity and was persisted into database.
Then the application pool, under which the ASP.NET application is running, goes to be recycled (e.g. by web.config change) and there are no more http requests to the ASP.NET application. And now is the time when delay activity should finish and next activity in the workflow should be executed.
Does it mean the next activity will not be executed until any request to the ASP.NET application because the app pool was recycled?
© Stack Overflow or respective owner