Windows Workflow Foundation Alternative

Reading time: 5 minutes 39 seconds

TL;DR

Introduction

When selecting a .NET compatible workflow solution for a company developers usually opt for Windows Workflow Foundation as the most obvious choice for helping them satisfy their mission. However, having spent hundreds of man-hours a while playing with it, developers find Windows Workflow Foundation awkward to code with. Such simple things as object instantiation either turn into a mess of value-setting activities, or is hard to follow due to being hidden within variable declaration default values. Moreover, when multiple developers are working on the same workflows, they'll surely have a hard time merging changes since the Workflow Foundation Designer's visual state is stored within the same XML that the actual workflows are stored in. In practice, that means that every time an activity is expanded or collapsed, the XML is changed, making your developers commit a lot of useless changes and leaving you off with troubles navigating through them. And that's just the beginning of it.

Windows Workflow Foundation Flaws

Despite being a popular workflow component for .NET solutions, Windows Workflow Foundation is flawed in many ways. The claimed value of the visual representation that WF is said to bring will drive you insane due to poor performance. In particular, the more complex your workflow gets, the slower the designer becomes. Workflows that amount to 100KB take more than a minute to load, whereas their debugging becomes virtually impossible.

Besides, whenever there's an error within your workflow related to persistence, communication or correlation, the trace logs do not contain any meaningful information which can tell you exactly what went wrong. It takes developers many hours of trial and error before they can figure out what the root of the problem is.

And the list goes on. Here are other concerns that Workflow Foundation users express:

All in all, Windows Workflow Foundation is claimed to be painful to use. Consider the following statement by Kevin Devoe on Stack Overflow:

We inherited a half-completed project from a consultant which used Windows Workflow Foundation as its backbone. It was prone to errors, corrupted workflows that couldn't be restarted, an archaic versioning system that required a complete duplicate of the workflow for any minor changes, horrific generated code, and such a delicate code that you had to handle it with kid gloves. After 6 months of yellow screens of death we scrapped the entire Windows Workflow Foundation and used XML instead. Best decision we've ever made.

Windows Workflow Foundation Alternative

They say the best tools are the simplest tools. However, when it comes to deploying a workflow system to address a wide range of process requirements, Windows Workflow Foundation might not be your best choice.

This range might include but is not limited to:

Inability of the chosen framework to introduce at least one of the aforementioned requirements might lead to an array of problems. This is why we recommend you to opt for Workflow Engine.

Workflow Engine is a lightweight all-in-one component that enables you to add custom executable workflows of any complexity to any .NET, .NET Core or Java software, be it your own creation or a third-party solution, with minimal changes to existing code. Workflow Engine works out of the box, offering you the widest range of features so that you can develop executable workflows of any complexity that get the necessary work done:

Workflow Engine runs on any production environment capable of running .NET, .NET Core or Java. Besides, it comes with a set of pre-built providers for the most popular databases, such as MySQL, MS SQL Server, Redis, MongoDB, PostgreSQL, SQL Azure and Oracle.

And there's much more. Here's a comparison chart of Workflow Engine and Windows Workflow Foundation:

Feature Workflow Engine 2.0 Workflow Foundation 4
Workflow Types State machine Flowchart
.NET Core support
Long-running operation support
State persistence mechanisms Only a few workflow parameters are saved. Serialization (XML, binary, etc). is defined by Persistence Provider. Settings are easily controlled and changed. Process instance is saved in part, whereas changes to the saving mechanism are complex.
Versioning
Visual Designer
Setting a process to an arbitrary state
Obtaining a list of available states for the current process
Obtaining a list of available external actions for the current process
Timers
Built-in authorization for external actions
Easy use of the existing codebase
Modifying the process scheme at runtime
Obtaining process lists for inbox/outbox folders
Human Readable XML format of the process scheme
User impersonation /replacement
Transition history

Conclusion

Windows Workflow Foundation is by far not the best option if you're considering to implement workflow functionality into your .NET solution. Despite being suited for long running business logic, Workflow Foundation is flawed in so many ways that it will inevitably cause frustration and disappointment, effectively rendering your solution inoperable.

If you are hesitant or already on the edge of frustration we kindly invite you to try out Workflow Engine. You can get acquainted with the full list of features here. Our free version is intended for non-commercial use only and has the following limitations:

Sending your message
Top