sequential-workflow

Is there a way to inspect Sequential Workflow in Windows Workflow?

A state machine workflow has the StateMachineWorkflowInstance class that you can use to inspect the current state of the workflow, get legal transitions, etc... Is there something like that for sequential workflows? I would like to have an easy way to programmaticaly find out what state the workflow is currently in. ...

How to load external data in the replicator activity in a sharepoint sequential workflow?

Hi all, I'm trying to make a really simple sequential workflow on sharepoint. The target of this worflow is doing a repetitive task creation over an item added. My problem is that the number of task tobe generated are stored in a sharepoint list so, before the replicator activity runs I have to check this list and get the number of task...

How do I host more than one WCF Sequential Workflow in WCF Workflow Library

I have two workflows in my sequential workflow service library project. But i cannot seem to configure both of the services to run in my wcf service host app. When the service host loads the one service has started but the other is stopped. No amount of fiddling with the app.config file seems to make any difference. How would one configu...

WF 3.5 stateful activities

I'm using WF 3.5 and looking for a way to develop an activity preserving its state among different iterations of the standard WF "while" activity. The problem is that normally the Execute() method of an activity should return the "Closed" execution status. Once it did that - it cannot get back to the "Executing" state and in the next ite...

Setting ModerationInformation.Status from Approved back to pending removes

Seeing if anyone else has had this problem and a resolution to it. I have a visual studio sequential workflow on a list (not a library) which does NOT use tasks, the approval process is done through the Approve/Reject OOTB buttons on the list item. The approval is a 2 stage approval, whereby if the 1st stage is completed (via clicki...

Workflow - assign task - task completed - need to re assign

Hello all, Scenario: A list item is created- workflow kick starts - creates a task in a task list - a user can assign the task to a member in SharePoint Group [acheived through task edit forms] . Here I am able to assign the task to a user and set the assignment workflow status to complete as user has assigned the task. Now due to som...

What is the equivalent for try-finally block in workflow foundation?

There is a specific activity I want to execute even after exception has thrown, just like a try{}finally{} block. Is it possible in sequential workflow using WF v3.5? ...