views:

168

answers:

1

We are running several the same ASP.NET applications (one per customer) based on our custom framework (libraries). Each application use its own database (Initial Catalog in the term of connection string). Now we would like to add workflow capability (of course 4.0 ;) to the applications. So the particular workflows will be the same for all the applications only some initial settings of each workflow can vary, e.g. in one application the e-mail will be send to the user X, but in other application to the user Y.

I have several general questions how to design architecture:

(1) Can be the workflow database shared for all the applications?

(2) Where to host workflow engine - inside our custom windows NT service or inside IIS? What are the criteria to choose the right host?

(3) How the workflow engine should communicate with applications? Should application call some WCF endpoint API configured in workflow host or vice verse - should each application provide WCF endpoint API and workflow engine will call it? How then the workflow engine will identify applications? Both cases requires probably some application identifier as a parameter in API calls?

(4) We would like to also store some information to the application databases based on the workflow states. Is it possible?

Thanks for suggestions!

A: 

I'll follow Robert's suggestion and write separate questions. Here is the first one http://stackoverflow.com/questions/2855399/windows-workflow-foundation-multiple-applications

Petr Felzmann
Here is the second question http://stackoverflow.com/questions/2856353/where-to-host-windows-workflow-foundation-engine
Petr Felzmann