How can I implement a workflow for a pre existing MVC application?

448 Views Asked by At

How can I implement a workflow structure for a pre existing MVC application?

i already have a working web application in asp.net MVC. Now it is required to implement certain parts of the application with the workflow structure.Is it possible?Are there any engines or code generators with which i can do this?

1

There are 1 best solutions below

0
Eric Rohlfs On

Usually Workflow Foundation is implemented as a Windows Service exposing a WCF endpoint for interacting with instances of workflows. Then your MVC app would make calls to this service using WCF. Learning WWF is a very different thing than learning or working with ASP.NET MVC. It is best to think of them as two different systems, just as the web app is different than the database. Also to help design a workflow in WWF, your question would need more details.