vote up 4 vote down star
5

What alternatives are there to Windows Workflow in the .Net stack? And if you have used these solutions, what made you select them over Windows Workflow and was it a good choice.


Update:

I went ahead and selected stateless created by Nicholas Blumhardt. This is a very simple approach to modeling states in a domain. Below is sample code provided at google:

var phoneCall = new StateMachine<State, Trigger>(State.OffHook);

phoneCall.Configure(State.OffHook)
    .Allow(Trigger.CallDialed, State.Ringing);

phoneCall.Configure(State.Ringing)
    .Allow(Trigger.HungUp, State.OffHook)
    .Allow(Trigger.CallConnected, State.Connected);

phoneCall.Configure(State.Connected)
    .OnEntry(t => StartCallTimer())
    .OnExit(t => StopCallTimer())
    .Allow(Trigger.LeftMessage, State.OffHook)
    .Allow(Trigger.HungUp, State.OffHook)
    .Allow(Trigger.PlacedOnHold, State.OnHold);

phoneCall.Configure(State.OnHold)
    .SubstateOf(State.Connected)
    .Allow(Trigger.TakenOffHold, State.Connected)
    .Allow(Trigger.HungUp, State.OffHook)
    .Allow(Trigger.PhoneHurledAgainstWall, State.PhoneDestroyed);

As you can see, the state machine uses generics to model the states and their respective triggers. In other words, you can use enums, integers, string, etc to fit your needs. Each state of the state machine can be configured with conditional triggers that will fire based on specific criteria.

flag

Why? What's wrong with Windows Workflow Foundation? – SLaks May 31 at 21:47
-1 for not giving any criteria beyond !WF. – John Saunders May 31 at 22:04
Actually, I'm inclined to agree that WF has some failings, especially for state machines. I'd be interested to see your own reasons for "!WF", and any replies... At the moment I'm using an expensive product for this... and considering rolling my own workflow engine that works better for my needs (for long running stateful business processes, where the process itself mutates during the lifetime of individual cases). – Marc Gravell May 31 at 22:15
I had left this open ended in hope that the answers would drive the discussion as opposed to me narrowing the topics to a single facet of WF. – David Robbins May 31 at 23:21

1 Answer

vote up 4 vote down check

Windows Workflow Foundation feels like an overkill to me in some situations. Then, it is easier and simpler to implement your own workflow engine.

Sample references:

link|flag
Thanks for the links - I just finished listening to Nicolas on DotNetRocks this weekend. – David Robbins Jun 1 at 17:04
You're welcome. PS: "Nicholas" – Rinat Abdullin Jun 1 at 17:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.