vote up 1 vote down star
1

WF has a configuration property: MaxSimultaneousWorkflows - other than building a custom test app or workflow, how can you verify that the property is working?

The reason not to build a custom test app or workflow is that it doesn't tell you about the workflow that I am actually trying to verify.

Update The reason to verify it is to make sure it is working as Microsoft documented it when run with the workflows that will be run in production, as a way to verify there are no bugs in WF setting.

flag

I can't help, I'm new to WF myself, but I'd like to know is why you need to. Have you seen odd behaviour? – serialhobbyist Jul 26 at 10:12
There has been some reports of odd behavior and someone thinks it may be related. Trying to rule it out. – Robert MacLean Jul 28 at 8:45
I can't of any odd behavior of the top of my head. I have known people to think you cannot start more that the specified number of workflows. This is not true, it is just the number of activities that are executing at the same time. Additional activities will be queued. The ThreadPool is used so don't set it to some very high number or you will get issues with ThreadPool starvation. – Maurice Jul 28 at 9:44

1 Answer

vote up 1 vote down

Maybe you can explain why you need to check MaxSimultaneousWorkflows?

The purpose of the MaxSimultaneousWorkflows setting is that the default workflow scheduler uses no more than the specified number of threads for simultaneous workflow activity execution. So you can start as many worklfows as you like but only the specified number will be executing at the same time. The workflow runtime, or more accurately the DefaultWorkflowSchedulerService, does this.

So your question makes me wonder of you are trying to unit test the DefaultWorkflowSchedulerService?

link|flag

Your Answer

Get an OpenID
or

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