Book Image

Programming Windows Workflow Foundation: Practical WF Techniques and Examples using XAML and C#

By : Kenneth Scott Allen
Book Image

Programming Windows Workflow Foundation: Practical WF Techniques and Examples using XAML and C#

By: Kenneth Scott Allen

Overview of this book

Windows Workflow Foundation (WF) is a technology for defining, executing, and managing workflows. It is part of the .NET Framework 3.0 and will be available natively in the Windows Vista operating system. Windows Workflow Foundation might be the most significant piece of middleware to arrive on the Windows platform since COM+ and the Distributed Transaction Coordinator. The difference is, not every application needs a distributed transaction, but nearly every application does have a workflow encoded inside it. In this book, K Scott Allen, author of renowned .NET articles at www.odetocode.com, provides you with all the information needed to develop successful products with Windows Workflow. From the basics of how Windows Workflow can solve the difficult problems inherent in workflow solutions, through authoring workflows in code, learning about the base activity library in Windows Workflow and the different types of workflow provided, and on to building event-driven workflows using state machines, workflow communications, and finally rules and conditions in Windows Workflow, this book will give you the in-depth information you need. Throughout the book, an example "bug reporting" workflow system is developed, showcasing the technology and techniques used.
Table of Contents (14 chapters)
Programming Windows Workflow Foundation: Practical WF Techniques and Examples using XAML and C#
Credits
About the Author
About the Reviewer
Preface

Chapter 5. Custom Activities

Building software with a general-purpose framework is fun, but not necessarily productive. Building software with a framework that specializes in solving our day-to-day problems can be fun and productive. We can tailor Windows Workflow to solve our day‑to‑day problems by writing custom activities. A custom activity might solve problems in a specific business domain such as a custom activity that can request tests on a patient's blood sample for healthcare applications. We could also write custom activities for a technology domain. If our applications make heavy use of Microsoft Message Queuing (MSMQ), it would make sense to build custom activities that interact with MSMQ.

We are going to start this chapter talking about why we would write custom activities, and then delve into different approaches for implementing custom activities. We will discuss how to build black box and white box activities using composition techniques. We will also look at using inheritance...