Tagged Questions

windows workflow foundation… provides a programming model, in-process workflow engine and rehostable designer to implement long-running processes as workflows within .NET applications.

learn more… | top users | synonyms (1)

32
votes
8answers
7k views

When to use Windows Workflow Foundation?

Some things are easier to implement just by hand (code), but some are easier through WF. It looks like WF can be used to create (almost) any kind of algorithm. So (theoretically) I can do all my logic ...
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 ...
15
votes
2answers
4k views

What is a dependency property?

What is a dependency property in .Net (especially in WWF context). What is the difference from the regular property?
14
votes
1answer
1k views

Comparison between Stateless (on google code) and Windows Workflow

I'm starting to think that I should ditch Windows WF in favor of something simpler. I don't necessarily need to pause workflow execution for extended periods of time and restore them later. I would ...
12
votes
3answers
1k views

What are the best resources for Windows Workflow Foundation (WF)?

I am looking for a few books, blogs or articles on WWF. I've read the books below; however, I need resources that cover the topic in more depth. I am especially interested in local services, ...
11
votes
5answers
1k views

Did you successfully adopt Windows Workflow in a real world web application?

I have recently posted a question regarding the Windows Workflow running in a web application. Granted it was a fairly technical question that contained terms like ManualWorkflowSchedulerService, ...
10
votes
8answers
1k views

Workflow Design Dilemma - State Machine, yes or no

I'm a beginner with WF, but I've read a book and done a lot of googling. I want to write an inventory management service. The inventory is made up of individual items which have a state: Spare ...
10
votes
5answers
1k views

Why use Windows Workflow?

What is the benefit of using Windows Workflow foundation (WF) versus rolling your own workflow framework? From what I can tell, WF only provides a pretty bare-bones runtime engine, a bunch of ...
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, ...
9
votes
3answers
4k views

DependencyProperty.Register() or .RegisterAttached()

What's the difference between the two, when should RegisterAttached() be used instead of .Register()?
8
votes
4answers
912 views

Real World Examples of WF and WPF Interaction

I'm looking for some good real-world examples of interaction between Windows Presentation Foundation and Workflow Foundation. Most of the WF tutorials I see demonstrate use within console ...
8
votes
1answer
320 views

Windows Workflow, WCF Ria services & Silverlight Example

I'm looking for an example of using Windows Workflow as a server-side 'business logic' layer, with WCF RIA services handling the communication to and from a Silverlight UI. Been googling for ...
8
votes
2answers
3k views

TFS 2010: Is MSBuild going to be dead because of Windows Workflow?

MSBuild in TFS 2010 has been replaced by Windows Workflow 4.0. It means when you are creating a Build Definition, you won't have a TFSBuild.proj to edit instead you must edit a workflow to customize ...
8
votes
2answers
2k views

Java alternative to Windows Workflow Foundation

What Java alternatives are there to Windows Workflow Foundation? I am looking for something that provides at least the same features that WWF does, and has the same flexibility and relative ease of ...
8
votes
2answers
4k views

Drools.NET vs Windows Workflow Foundation (WF)

I am currently in the process of searching for a rules engine that works in .NET. Our logic is pretty simple, +, -, *, /, and, or, basic order of operations stuff. However we are going to need to ...
7
votes
3answers
314 views

Windows Workflow usage in large web applications

Although, most of the examples I checked on the Internet use WF to deal with wizard-like steps or designing a workflow-based UI, and since Windows Workflow can deal with state machines, and if we say, ...
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 ...
7
votes
7answers
3k views

Store Files in SQL Server or keep them on the File Server?

Currently we have thousands of Microsoft Word files, Excel files, PDF's, images etc stored in folders/sub folders. These are generated by an application on a regular basis and can be accessed at any ...
7
votes
1answer
1k views

Can anyone recommend a .Net open source alternative to Windows Workflow?

What alternatives are there to Windows Workflow in the .Net stack? And if you have used these solutions, what made you select them over Windows Workflow and was it a good choice. Update: I went ...
7
votes
6answers
8k views

Assigning multiple users to a workflow task in sharepoint

Has anyone able to assign multiple users to a sharepoint workflow task using the CreateTask activity?
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 ...
6
votes
3answers
982 views

Where is Windows Workflow Foundation used?

Is WF used at user interface or business layer? If at UI layer, then does someone coding in business layer even need to use or learn it?
6
votes
2answers
366 views

WF, WCF and Declarative Services (or: What does Microsoft mean by “declarative”?)

I've made this Community Wiki because some may think it's open to debate and others might think it's a question of using words to mean what they really mean (in other words, it's a matter of opinion ...
6
votes
8answers
2k views

ASP.NET - best queue system for a new application

My organization is getting ready to implement a new system, which is a asp.net application. The application will have a large queue of offline work that is initiated by the website. This queue will ...
6
votes
4answers
8k views

In sharepoint designer's workflow editor how do I get the workflow initiators username?

In Sharepoint designer's workflow editor I wish to retrieve the username/name of the work flow initiator (i.e. who kicked it off or triggered the workflow) - this is relatively easy to do using 3rd ...
5
votes
1answer
102 views

WF Custom SQL Tracking Service Stopped Working for old workflows?

I have a custom tracking service that has been running for a while now with over 1500 live workflows ticking along, I'm now in the process of versioning the workflows so that I can release some change ...
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
154 views

How do the multiple .NET technologies and patterns work together?

I have mostly been a Database developer but to enhance my personal skills and to develop a windows application I am trying to learn the new things in .NET. A few years back I devloped a POS in C# ...
5
votes
3answers
723 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
5answers
2k views

Error 'TF215097:…Cannot create unknown type for…' custom CodeActivity [closed]

Possible Duplicate: TFS 2010 Custom Build Activity TF215097 error I'm trying to create a CustomActivity to run after each successful build. I've followed the exact steps of several ...
5
votes
1answer
770 views

.NET WF4: Should it be in the middle of everything?

I'm working on a new architecture for essentially an n-tier collaborative application (not enterprise-class, just a smallish project with potential to grow significantly) where I'm already trying to ...
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 ...
5
votes
4answers
633 views

Are Windows Workflow Foundation Statemachines suitable for high performance scenarios?

i´m currently dealing with a system where i have to track the state for several thousand objects in parallel that send possible state updates a few times every minute. In addition i have to perform ...
5
votes
7answers
1k views

Open alternatives to Windows Workflow

Pre-warning: There are some other questions similar to this but don't quite answer the question (these include: http://stackoverflow.com/questions/19314/alternatives-to-windows-workflow-foundation, ...
5
votes
10answers
558 views

Need technology recommendation/suggestion

My company is in need of a task management system to handle scenarios as simple as "Purchase a computer for X" to "Relocate a person to another country". The simple scenarios are a single tasks ...
5
votes
7answers
2k views

Dynamic Business Rules in a web application

Greetings! Working on a web based project were business rules and logic need to be customized by client. I want to do this without having to recompile the application every time we sign up a new ...
5
votes
3answers
329 views

Time Based Events in ASP.net

I need to perform some events (sending emails, etc.) based on time. What is the best way to accomplish this in ASP.net in a hosted (medium trust) environment? ex: Send email every day at 4:00pm. ...
5
votes
6answers
1k views

How to deserialize Enumerable.ToList<>() to List<>

I'm trying to build an object that looks something like this: public class MyObject { private IList<AnotherObject> items; public List<AnotherObject> Items { return ...
5
votes
2answers
445 views

Workflow In Production Code

Hi I would like to know how many of you have used Workflow in your production environment and Was it good idea? I mean we can create the same thing using DB and scheduler service
5
votes
4answers
891 views

WorkFlow Unit Testing

How to unit test the windows workflows?
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
6answers
1k views

State machine workflow in VS 2010

I have a simple web application (non sharepoint) in which i want to add window workflow. I am using VS 2010 (.Net 4.0). I have done that in VS 2008 but dont know how to create a state machine workflow ...
4
votes
3answers
264 views

Pattern for long running tasks invoked through ASP.NET

I need to invoke a long running task from an ASP.NET page, and allow the user to view the tasks progress as it executes. In my current case I want to import data from a series of data files into a ...
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
299 views

What are the good practices for hosting MS Windows Workflow runtime for an asp.net mvc application?

I'm working on a asp.net mvc project that will use MS Windows Workflow Foundation to manage client business work flows. These are long running workflows spanning in time over a year or two. So we've ...
4
votes
1answer
322 views

How do you manage versions in Workflow Foundation?

How do you manage versions of workflows in WF when you have long running workflows and you might have two or three versions in the persistence store at the same time and have to be able to access them ...
4
votes
4answers
4k views

Workflow Engine for .net

This is a multipart question: First, what is your personal opinion of WF? Second, are there any other good .net-based workflow engines? Some information about my usage: Using both static and ...

1 2 3 4 5 17