Alternatives to Windows Workflow Foundation

asp.networkflow

I've been using WWF for a while as part of an internal call center application (ASP.NET), and while learning it was a good practice in understanding how a state machine based workflow system should work, I am definitely not in love with WWF itself. In my opinion it is:

  1. Overly complex, especially for use within web apps (all that threaded runtime stuff)
  2. Immature (ever worked with that horrible designer?)
  3. Anemic in its current feature set

Does anyone have a suggestion for a better .NET based workflow framework? Specifically, I am looking for the following features:

  1. State machine based (mapping states to available actions)
  2. A focus on user permissions (controlling who has access to what actions)
  3. The ability to run workflows as timed background tasks (for example, to send out reminders for items that have been sitting in a certain state for x days)

That's really all I need. I don't need to be able to "drag and drop" any activities or visually design the flow. I am perfectly comfortable writing actual code once a particular action is triggered.

Best Answer

You could try Simple State Machine. You would have to implement access control and background timers yourself, but that shouldn't be a big deal. SSM was also built out of frustration with WF. There are some other state machine implementations on Codeplex as well. If one of them doesn't fit he bill out of the box, they are open source and should get you close enough.

I wholeheartedly agree with you about state machines in WF - they aren't testable, are too complicated, the threading model is peculiar and hard to follow, and I'm not sure a visual designer could have been more poorly conceived for designing state machines graphically. I think this may be because the state machine concept feels tacked onto the WF runtime, which was designed for sequential state machines, something WF does a much better job with, in my opinion. The problem is that state machines are really not the same animal as a sequential work flow, and should have been given a first class implementation of their own, because the warping of WF to make it seem to support them turned out to be more or less unsupportable, if not actually unusable.

Related Topic