seahorse
seahorse

Reputation: 2470

Worklow Foundation(.NET) Equivalent for Python, Java, C++?

What is the Windows Workflow Foundation equivalent in Python, C++, Java? I am looking for a classic and nice GUI based workflow framework to design workflow GUIs with equivalent back end codes/activties or processes Can anyone suggest? Thanks!

Upvotes: 5

Views: 1408

Answers (2)

kmmbvnr
kmmbvnr

Reputation: 6139

Pure GUI workflows were a bit overrated.

We do not use GUI to construct iPhone software and HTML websites. We even stop using GUI for server administration. Also in 200x, it looks like no GUI approach can't succeed. All those Windows administration software and Borland products are dead now.

As opposite, we have a rise of open source code. Frameworks and libraries make software creation faster with code instead of GUI. Django, Ruby on Rails and Twitter Bootstrap, many server administration solutions like Ansible and Chef are great examples of such movement.

Honestly, for workflow software, such movement started not very long ago.

For Java you can take a look to camunda, ruby has ruote, and for python, I'm developing workflow library on top of django - viewflow

Upvotes: 2

Bala R
Bala R

Reputation: 108957

Checkout jBPM for java. I have not come across anything similar for C++ and Python.

Upvotes: 2

Related Questions