up vote 32 down vote favorite
19
share [g+] share [fb]

Some things are easier to implement just by hand (code), but some are easier through WF. It looks like WF can be used to create (almost) any kind of algorithm. So (theoretically) I can do all my logic in WF, but it's probably a bad idea to do it for all projects.

In what situations is it a good idea to use WF and when will it make things harder then they have to be? What are pros and cons/cost of WF vs. coding by hand?

link|improve this question

55% accept rate
Btw, it is just called WF now a days.. bloggingabout.net/blogs/erwyn/archive/2006/06/16/12522.aspx – Gulzar Nazim Sep 19 '08 at 18:18
feedback

8 Answers

up vote 27 down vote accepted

You may need WF only if any of the following are true:

  1. You have a long-running process.
  2. You have a process that changes frequently.
  3. You want a visual model of the process.

For more details, see Paul Andrew's post: What to use Windows Workflow Foundation for?

Please do not confuse or relate WF with visual programming of any kind. It is wrong and can lead to very bad architecture/design decisions.

link|improve this answer
feedback

The code generated by WF is nasty. The value that WF brings is in the visual representation of the system, although I have yet to see anything (6-7 projects at work now with WF that i've been involved with) where I would not have preferred a simpler hand coded project.

link|improve this answer
Amen. See my answer. – Ronnie Overby Dec 21 '11 at 18:10
feedback

The major reason I've found for using workflow foundation is how much it brings you out of the box in terms of tracking and persistence. It's very easy to get the persistence service up and running, which brings reliability and load distribution between multiple instances and hosts.

On the other hand, just like forms apps, the code patterns that the workflow designer pushes you towards are bad. But you can avoid problems by writing no code in the workflow and delegating all work to other classes, which can be organized and unit tested more gracefully than the workflow. Then you get the cool visual aspect of the designer without the cruft of spaghetti code behind.

link|improve this answer
feedback

The company I am currently working for set up a windows work flow and the reasons they chose to use it was because the rules would frequently be changing and that would force them to do a recompile of the various dll's etc and so there solution was to place the rules in the db and call them from there. This way they could change the rules and not have to recompile and redistribute the dlls etc.

link|improve this answer
1  
Too bad regular web services and applications don't have .config files, can't read databases, nor read XML nor local files that contain rules, without recompiling. Oh wait... – Dour High Arch Dec 21 '11 at 19:46
feedback

Personally, I'm not sold on WF. It's usefulness wasn't as obvious to me as other new MS technologies, like WPF or WCF.

I think WF will be used heavily in business applications in the future, but I have no plans to use it because it doesn't seem like the right tool for the job for my projects.

link|improve this answer
feedback

I would use it in any environment where I need to work with workflow, however when using it in conjuction with K2 or even SharePoint 2007 the power of the platform is truly useful. When developing business applications with BI specialist the use of the platform is recommended and this would normally only be relevant to streamline and improve business processes.

For the record WF was developed in conjunction with K2's development team and the new K2 Blackpearl is built on top of WF, so is MOSS 2007 and WSS 3.0's workflow engines.

link|improve this answer
feedback

Never. You will probably regret it.

link|improve this answer
-1 i respect your opinion on this but would much appriciate a professional explenation of the reason. i cant see how this kind of an answer helps anyone – danfromisrael Jan 25 at 8:08
I wrote this answer on a day that I was angry at WF4. I'll update my answer with the issues I have faced. – Ronnie Overby Jan 25 at 14:11
feedback

Your Answer

 
or
required, but never shown

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