Tagged Questions
Windows Workflow 4 is Microsoft's framework for declarative composable business logic for .NET.
45
votes
7answers
2k views
To Workflow or Not to Workflow?
I am responsible for a team of developers who will are about to start development of a light weight insurance claims system. The system involves a lot of manual tasks and business workflows and we are ...
29
votes
4answers
1k views
A strong case for WF
I have struggled for so long to find a compelling use case for workflow (ie: WF) as against regular imperative programming. Each time I fall back to the conclusion that I should just leave WF out or ...
21
votes
1answer
1k views
WF4 - Display workflow image in asp.net and highlight an activity
I need to display current status of a document approval workflow task in asp.net web page with a specific activity highlighted.
I have seen the Visual workflow tracker example (in wf & wcf ...
16
votes
5answers
5k views
Windows Workflow Foundation 4.0 Tutorials / Introductions
Pretty much all of the tutorials/introductions to Windows Workflow Foundation seem to be targeted at versions prior to 4.0, or are somewhat simplistic and don't really show me anything about WHAT the ...
10
votes
2answers
316 views
What's the best design for a web app that adopts WF?
We are currently building an application that makes use of a non-simple approval process, which involves multiple levels of approval, returning, reviewing, notifications etc..
Because of the said ...
10
votes
7answers
1k views
Please confirm: Is Windows Workflow Foundation a good horse to be backing right now?
We are in the process of selecting a workflow solution for a company that uses Microsoft products end to end. Given the news on WF4, in that it seems to be essentially a rewrite of previous versions, ...
7
votes
2answers
214 views
How do I mock out a call to a WCF Service when using a Send or SendReceive activity in WF4?
So as apart of my workflow I need to make a call to an external WCF Service to retrieve some objects. The problem is I can't see how to mock out the WCF Service that will be called by the send ...
6
votes
4answers
1k views
Loading persisted workflow after workflowdefinition has changed in WF4
How to solve this problem (in WF4):
I create a workflow in xaml and start several instances of it, I have a persistancestore and all workflows persist on a bookmark half way their workflow.
Now I ...
5
votes
1answer
181 views
Dynamic parameters in custom Activity?
We are re-hosting the WF-4 designer in our own app.
We have something called a Filter. Now we want an activity that lets you run this filter
and work with the results in a ForEach. Simple enough.
...
5
votes
1answer
667 views
Implement Classic Async Pattern using TPL
I'm trying to implement a custom TrackingParticipant for WF 4. I can write the Track method, but my implementation will be slow.
How can I implement the Begin/EndTrack overrides using .NET 4.0's Task ...
5
votes
2answers
382 views
Thoughts and Experiences with Workflow Foundation 4
Now that Microsoft has revamped their workflow framework in Windows Workflow Foundation 4, what are your thoughts and experiences with this new framework?
I have been working with WF4 for a few ...
5
votes
3answers
722 views
Dependency injection / IoC in Workflow Foundation 4
Is it possible to use DI in your workflow activities? and if yes, how?
For example if you have an activity like
public sealed class MyActivity : CodeActivity
{
public MyClass Dependency { get; ...
5
votes
3answers
705 views
How do you schedule execution of a Windows Workflow?
I'd like to move my scheduled tasks into workflows so I can better monitor their execution. Currently I'm using a Window's scheduled task to call a web service that starts the process. Is there a ...
5
votes
2answers
2k views
Windows workflow 4 : difference between WorkflowApplication Cancel, Terminate and Abort
Can any one explain what the difference is between the following methods of WorkflowApplication:
Abort
Cancel
Terminate
5
votes
4answers
526 views
WF 4.0 Resources Collection
Though WF 4.0 beta1 released, we dont have much resources available on the net to understand the concepts.. i know lot of bloggers are keep putting some materials about WF 4.0. it would be great if we ...
4
votes
3answers
297 views
Why is the Workflow Designer so extremely slow when editing build process templates?
There's not much more to add really than the above question.
I have a fairly simple build process template, which has hardly deviated from the default one.
I have two custom activities, which by ...
4
votes
3answers
172 views
Silverlight + Workflow Foundation
I'm beginning work on a new project that will use WF4 for business processes and Silverlight 4 for UI.
I know that Silverlight will not host WF; I'm not interested in that.
I'm wondering whether I ...
4
votes
1answer
307 views
Multiple Receive Activities in WF4 fails when persistence is enabled
I have a WF4 workflow with multiple receive functions.
The workflow runs fine until I add persistence. I created the persistence tables and added the following to the ...
4
votes
2answers
686 views
WF4 : Custom activity with child activity
How can I create a custom activity for Workflow Foundation 4 that host a child activity (or several)?
The idea is to create something similar to the TryCatch activity where you can specify an ...
4
votes
2answers
231 views
What are some strategies for unit testing workflows in WF 4?
I've done quite a bit of WF development using 3.5 over the last few years, but am just now ramping up on WF in 4.0. I have a TDD bent, and while WF 3.5 was difficult at times to unit test, I'm ...
4
votes
2answers
1k views
Binding data to Combobox in custom activity designer
I have a custom activity, with a single in argument which is a string. However, rather than allow the designer to enter an arbitrary string, I want the designer to be presented with a Combobox with ...
4
votes
2answers
2k views
How to define multiple Receive activities within a single workflow service (WF4)
I have a workflow service (defined declaretively in a .xamlx file) that currently contains one Recieve activity. As you may know, services usually expose more than one operation.
And that's what I ...
4
votes
3answers
812 views
WF4 is it possible to create a designer for a composite activity?
I know how to hook up a designer activity to a NativeActivity or CodeActivity with the Designer attribute on the class. Like so:
[Designer(typeof(ParallelActivityDesigner))]
I would like to also ...
4
votes
1answer
554 views
What's the pattern for design-time validation in Workflow Foundation 4.0?
I'm unclear about when and how I should be doing validation in my custom activities/custom activity factories/custom designers in WF 4.0.
The only place within my activity that seems to provide ...
3
votes
2answers
131 views
Using WCF on Localhost on Azure
In summary
How do I acces a WCF service on localhost when hosted in IIS on Azure? Azure does not bind localhost or 127.0.0.1 to my website.
Details
I have an ASP.Net application hosted on Azure. I ...
3
votes
2answers
86 views
How to FORCEFULLY kill a WorkflowInstance?
I have a somewhat unusual scenario where I need to be able to outright slaughter "hung", self-hosted WorkflowInstance's after a given timeout threshold. I tried the Abort(), Terminate() and Cancel() ...
3
votes
2answers
223 views
Activity cannot set a Variable defined within its scope?
This one is making me scratch my head, and I'm wondering if I am understanding this correctly.
I'm trying to define a Variable within an Activity that can be used by child Activities. The Parent ...
3
votes
1answer
198 views
WF4 Services and WIF Integration
Are there proven patterns that anyone could share regarding Workflow 4.0 services integrated with Windows Identity Foundation? We are looking for the best way to inspect the STS token and claims in ...
3
votes
2answers
113 views
Windows WF for industrial automation
I'm learning WF while envisioning a system that I'm developing for industrial automation. The physical process IS a workflow. For example, the process involves controlling a 6-dof robot to pickup a ...
3
votes
1answer
3k views
Windows Workflow Foundation 4 and ASP.NET MVC [closed]
We are evaluating Windows Workflow Foundation 4 to use in MVC 3 based Web Applications. We would like to create flexible order workflows for different projects.
Does anybody know good information ...
3
votes
2answers
144 views
Windows Workflow a good fit for non programming end users?
Is WF4 suited for end-user situations? For example, I have a application framework built that my customers can use. It's very basic. I want them to have the ability to create their own business ...
3
votes
2answers
554 views
Visually Tracking / Monitoring Workflow(WF) 4.0
I am planning to build a custom web application in ASP.NET 4.0 using WF 4.0, the user wants ability to modify workflows himself, for this we will be using a WPF client which the user can use and we ...
3
votes
1answer
1k views
Custom WF4 Activity with OutArgument and Assign Activity
I am trying to write a custom activity by composing standard Activities, one of which is an Assign activity which is responsible for assigning a string value to an OutArgument, called 'TextOut', which ...
3
votes
1answer
924 views
Correlation in WF 4 on workflow InstanceId
In Windows Workflow Foundation under .NET 4.0, is there a way to correlate operations based on the InstanceId (GUID) of a long-running persisted workflow?
For example:
Operation 1 creates workflow ...
3
votes
1answer
174 views
Behaviour of SendResponse in WF4
at the top of my template workflow I put a ReceiveRequest / SendReply block where I'd like to perform synchronous operations, enabling then the user client to receive a timely response of the workflow ...
3
votes
1answer
500 views
Human activity support in Windows Workflow 4
I’m investigating Windows Workflow (WF) for .NET 4.0, and there seems to be a few pieces missing. From a BPM perspective, you want to have the concepts of work queues and security (user ...
3
votes
1answer
182 views
Listing Currently Running Workflows in .Net 4.0
I've got a .Net 4.0 Workflow application hosted in WCF that takes a request to process some information. This information is passed to a secondary system via a web service and returns a bool ...
3
votes
2answers
438 views
Can a WF4 Generic Activity be Declared in XAML?
I have a Workflow 4 activity that can be run on any number of classes that inherit from my base class. So, the activity is, naturally, generic. Similar to the ForEach or AddToCollection activities, my ...
3
votes
3answers
313 views
Categorizing properties of XAML activities
Using a code activity (i.e. activity built out of C#) we can add category attributes to our properties and display them nicely in the property grid of the workflow designer e.g.
...
3
votes
1answer
723 views
Appfabric WF4-WCF services, how to retrive current url in codeactivity without httpcontext?
i have developed a wf-wcf services with a code activity and in it i want to retrive the current url of the service.
If i disabling the persistence feature of appfabric i can retrive the url using
...
3
votes
2answers
250 views
Is there any standalone application which would export WF4 designer functionality?
I read that it is possible to host WF4 designer in standalone application outside Visual Studio 2010, in fact I tried it too. But main problem with it is missing intelisence.
Therefore the question: ...
3
votes
4answers
2k views
Design workflows for WF4 in Silverlight
Our system is based on flows and activities and we want to give the analysts users the opportunity to create dynamics flows (at runtime).
The designer UI based on SL 4.0 .
It looks like ...
3
votes
1answer
1k views
Scheduling runtime-specified Activity in Workflow 4 RC
so I have this requirement to kick off Activities provided to me at run-time. To facilitate this, I have set up a WorkflowService that receives Activities as Xaml, hydrates them, and kicks them off.
...
3
votes
1answer
1k views
Windows Workflow Foundation 4.0 Pick Activity Containing a Delay Activity
I'm working with Beta 2 of Visual Studio 2010 to get some advanced understanding of WF4. I've created a workflow that has a Pick Activity that is contained in an If Activity. In the Pick Activity I ...
3
votes
2answers
647 views
Workflow 4.0 custom activity to start external process
I am trying out Workflow 4.0 and hoping to write a custom activity to start an external executable, wait for that process to complete and then resume subsequent steps in the workflow.
I found the ...
3
votes
1answer
1k views
Loading a workflow stored as XAML in .NET 4.0
What is the syntax for loading a .NET 4.0 Beta2 workflow that was previously created and stored as XAML.
The WorkflowElement and WorkflowXamlServices classes no longer exist. I am trying to do ...
3
votes
3answers
648 views
Windows Workflow Dynamic, User-Created Workflows
I have a client who's interested in utilizing Windows Workflow Foundation (WF) technology in a web-driven application. I'm a .NET developer, but I have no experience with either WF or SharePoint ...
3
votes
3answers
814 views
Best way to run multiple workflows concurrently in WF 4.0
I have a routine that creates n instances of a particular workflow and runs them each serially. How could I fire them off async?
Current p-code:
forloop
// Create
var syncEvent = ...
3
votes
1answer
776 views
How to query a workflow instance for its execution state
I have created a workflow, and Im running it via WorkflowInstance.Run().
This workflow has numerous bookmarks, and I would like to be able to query it for which
bookmark is responsible for the current ...
2
votes
1answer
48 views
Execute single workflow instance in parallel
Let's say I have a workflow, and I want to execute it many times in parallel:
System.Threading.Tasks.Parallel.For(
0,
100,
i => WorkflowInvoker.Invoke(
new Workflow1(),
...