Categories: Tutorials

Hosting Workflow Applications in Microsoft Windows Workflow Foundation 4.0

4 min read

Introduction

WF4 is one part of .NET Framework 4.0, which means WF4 workflow can be hosted and run in any type of application running with the .NET framework. We can host a workflow as a WCF service. We can also invoke a workflow service from a workflow or host workflow in an ASP.NET application and handle all the business logic behind the page.

When we design workflow applications, please let workflow be workflow. Don’t couple workflow with other logic. For example, in this chapter, hosting workflow in ASP.NET is for conception demonstration only, not the best practice. In the real world, most of the time, workflow should be implemented as a workflow service hosted in IIS7 or AppFabric.

AppFabric is an IIS7 extension that includes many tools to help us host a workflow service. AppFabric is to workflow service like IIS7 is to ASP.NET website. However, we can run a workflow service in IIS7 without AppFabric installed. Although AppFabric is powerful, we need to spend some time to learn it. For more information about AppFabric, you can check this link: https://www.microsoft.com/en-us/download/details.aspx?id=27115

Hosting a workflow service in IIS7

The process of sending an e-mail would consume some time – maybe a few seconds or even minutes. It would be a waste of time and resources for our applications to stop and wait for an e-mail sending action to complete. Because sending e-mail is time-consuming, a better design is to strip this feature out as an independent WCF workflow service and host that service in IIS7.

Getting ready

We need the SendEmailActivity activity to send an e-mail.

How to do it…

  1. Create a WCF workflow service application:
    Create a WCF workflow service application and name it
    HostingWorkflowServiceInIIS7.

  2. Add SendEmailActivity to the toolbox:
    In the Toolbox tab, right-click and select Choose Items. In the opening dialog, click Browse and navigate to the ActivityLibrary.dll
  3. Click OK. We will find SendEmailActivity in the toolbox:

  4. Create a SendEmail workflow service:
    1. Delete Service1.xamlx, which is created by default, and add a new WCF workflow service to the project. Name it SendEmailService.xamlx. Drag a TransactedReceiveScope activity to the design panel, click the Variables button, and create a variable named emailMessage:
    2. Drag a Receive activity to the Request box of TransactedReceiveScope. Set the OperationName to SendEmail. Click the Content Definition link to create a parameter as shown here:
    3. Assign ISendEmailService to the ServiceContractName property. Check the CanCreateInstance property.
    4. Next, drag SendEmailActivity to the body of TransactedReceiveScope.
    5. Assign the following properties to SendEmailActivity:
    6. The final workflow will look as shown in the following screenshot:

  5. Create a website in IIS7 for this WF service:
    In IIS7 Manager Console, create a website and assign the website’s physical path to the project folder of HostingWorkflowServiceInIIS7. Assign it a new port number. By default, an ASP.NET application will run under the built-in network service account (or ApplicationPoolIdentity in IIS7.5). This account has the most limited permissions. For testing, we can shift the application pool’s identity to an administrator account.
  6. We should be able to find the following module and handlers in IIS7:

    If we cannot, then we should reinstall .NET framework 4.0 or repair it. Here are the repair commands:

    Repair command for 32-bit:

    .NET Framework 4 Full (32-bit) – silent repair %windir%Microsoft.NETFrameworkv4.0.30319SetupCacheClient setup.exe /repair /x86 /x64 /ia64 /parameterfolder Client /q /norestart

    Repair command for 64-bit:

    .NET Framework 4 Full (64-bit) – silent repair %windir%Microsoft.NETFramework64v4.0.30319SetupCacheClientsetup.exe /repair /x86 /x64 /ia64 /parameterfolder Client /q /norestart

  7. Use WCFTestClient.exe to test the WCF service:
    Usually, we can find the WCFTestClient.exe tool in C:Program Files (x86)Microsoft Visual Studio 10.0Common7IDE.

    We just need to open our mail. A new mail with subject Hello WF Service indicates that we have created and hosted the WF service successfully.

How it works…

Simply put, once we have set up the IIS7, we need to copy all the workflow service project files and folders to the IIS application folder and the workflow service will just work.

There’s more

We can also host a WF4 service in IIS6 once we have installed .NET framework 4.0. Running a WF4 service in IIS6 is not recommended.

Packt

Share
Published by
Packt

Recent Posts

Top life hacks for prepping for your IT certification exam

I remember deciding to pursue my first IT certification, the CompTIA A+. I had signed…

3 years ago

Learn Transformers for Natural Language Processing with Denis Rothman

Key takeaways The transformer architecture has proved to be revolutionary in outperforming the classical RNN…

3 years ago

Learning Essential Linux Commands for Navigating the Shell Effectively

Once we learn how to deploy an Ubuntu server, how to manage users, and how…

3 years ago

Clean Coding in Python with Mariano Anaya

Key-takeaways:   Clean code isn’t just a nice thing to have or a luxury in software projects; it's a necessity. If we…

3 years ago

Exploring Forms in Angular – types, benefits and differences   

While developing a web application, or setting dynamic pages and meta tags we need to deal with…

3 years ago

Gain Practical Expertise with the Latest Edition of Software Architecture with C# 9 and .NET 5

Software architecture is one of the most discussed topics in the software industry today, and…

3 years ago