Windows Azure & WF 4.0 – Executing Workflows stored in blob storage
On my previous post I’ve shown how to create a Workflow-Driven Worker Role, which is a great idea when we have complex processes to handle. That example was a good way to understand how to do that, but It has a limitation: the workflow is inside the assembly, this means that to change the workflow [...]
Windows Azure & WF 4.0 – Creating a Workflow-Driven WorkerRole
Worker roles are a great resource we can use to execute background tasks like integration, migration, scheduling tasks, etc, but also are very useful to run asynchronous tasks triggered by the user. All this kind of processes usually are composed by a set of steps, and we usually hardcode the flow in which those steps [...]