The Problem Solver

Tell me and I will forget
Show me and I will remember
Involve me and I will understand
- Confucius -

Google Ads

This Blog

Syndication

Search

Tags

News





  • View Maurice De Beijer's profile on LinkedIn

Community

Email Notifications

Explore

Archives

Browse by Tags

All Tags » WCF » Workflow (RSS)
Guerrilla Enterprise .NET Copenhagen
For those that attended the Guerrilla Enterprise .NET course last week in Copenhagen and didn't get a change to download all the sample you can download all the demos Richard Blewett, Dominick Baier and I wrote from here . And thanks for being there...

Posted by Maurice | with no comments

Workflow Services and Windows Phone 7
Today I did a fun presentation at the Engineering World Conference in the Netherlands on using the Windows Phone 7 with a Workflow Service hosted on Windows Azure. The sample application, that is complete with all source on CodePlex over here , consists...

Posted by Maurice | with no comments

The SqlWorkflowInstanceStore and Windows Azure
As shown previously it isn’t hard to run Workflow Services on Windows Azure. In fact all we need to do is add a bit of extra configuration and we can work as normal. However normally when I am hosting long running workflows in IIS I always add a SqlWorkflowInstanceStore ...

Posted by Maurice | 1 comment(s)

Filed under: , , , , ,

Running Workflow Services on Windows Azure
Windows Azure might not support the WCF and WF4 hosting parts of Windows AppFabric bit that doesn’t mean you can’t run workflow services on Windows Azure. After all a workflow is just a .NET 4 type and Windows Azure runs the .NET framework. As a result...

Posted by Maurice | 1 comment(s)

CodeCast interview on Windows Workflow Foundation
Ken Levy recently interviewed me for CodeCast on the state of Windows Workflow Foundation 4 and the AppFabric for hosting your workflow services. Its episode 99, I wonder what they are planning for episode 100. You can download the episode here or through...

Posted by Maurice | with no comments

Throttling workflow services in WF4
Windows Workflow Foundation 4 makes it real easy to create workflow services that do long running work on a server. However when we are doing long running work there could be an issue with lots of workflows being started and too many workflow instances...

Posted by Maurice | 2 comment(s)

Filed under: , , , ,

Versioning long running Workflow Services in WF4, the code
In my previous WF4 post I described the principal of how to version workflow services using the WCF 4 RoutingService. In that post I described the general problem and solution without going into a lot of detail and showing any code. In this blog post...

Posted by Maurice | 5 comment(s)

Filed under: , , , ,

Versioning long running Workflow Services in WF4
One of the problems with the current version of Windows Workflow Foundation is how to handle different versions of your workflows. With short running workflows this is no big deal, workflows do whatever they are supposed to do and finish, and you can...

Posted by Maurice | 2 comment(s)

Filed under: , , , , ,

Limiting which user can access service using the Windows Identity Foundation
In my previous blog post I demonstrated how to secure a workflow service using the Windows Identity Foundation. With this in place we only allow users that are trusted by the STS Dominick Baier wrote. That is nice but in some cases we might not want all...

Posted by Maurice | 2 comment(s)

Filed under: , , , , ,

Securing a Workflow Service using Windows Identity Foundation
The way security is often still handled these days with each application keeping track of their own users is somewhat dated. Some form of Federated security, where a single separate server is responsible for the security of a whole series of applications...

Posted by Maurice | 5 comment(s)

Filed under: , , , , ,

Using the WCF OperationContext from a Receive activity
The WF4 Receive activity shields you from a lot of the WCF pipeline. Normally that is a good thing but there are occasions where you want to know more about the incoming WCF request. Normally you can use the WCF OperationContext.Current to get at this...

Posted by Maurice | with no comments

Filed under: , , , ,

Workflows and no persist zones
There are times when a workflow can’t be persisted safely using a SqlWorkflowInstanceStore. The reason isn’t so much saving the state of  a workflow to disk, that could be done at any time, but the result when a workflow would be reloaded from disk...

Posted by Maurice | 2 comment(s)

Filed under: , , , ,

Quickly determine the windows identity of an ASP.NET site
  Great tip from Dominick to quickly determine the use an ASP.NET, WCF or WF4 service is running under. Add the following ASPX file and hit it with the browser. <%@ Page %>   <%= System.Security.Principal.WindowsIdentity.GetCurrent...

Posted by Maurice | 1 comment(s)

Filed under: , , , , ,

Hiding the XAMLX from a workflow service
In Windows Workflow Foundation 4 it’s easy to create a workflow and expose it as a WCF service. But one thing is that it exposes a XAMLX endpoint to each client can see the service actually implemented as a workflow service instead of a regular service...

Posted by Maurice | 4 comment(s)

Filed under: , , , ,

More Workflow 4 Services and duplex communications
Yesterday I posted a long blog post explaining how to do duplex communications in a Workflow service. Its a long story but the most important points where that workflow services don’t support the same style duplex communication as WCF with the callback...

Posted by Maurice | 2 comment(s)

Workflow 4 Services and duplex communications
There are quite a a few cases where it is useful to have a duplex communications. An obvious candidate is allowing a service to notify the user interface application of the progress so the user knows what is happening. Normally, when using plain WCF ...

Posted by Maurice | 3 comment(s)

Workflow Receive activity and message correlation
With WF4 it is quite easy to use data that is part of the request message, for example an order identifier, to route multiple WCF messages to the same workflow. It is also possible to have multiple messages that can start a new workflow. In this blog...

Posted by Maurice | 6 comment(s)

Filed under: , , , ,

Workflow 4 and soap faults
Image by ponChiang via Flickr Note: This blog post is written using the .NET framework 4.0 RC 1   Using the ReceiveAndSendReply activity template and the WorkflowServiceHost it is easy to create a workflow service. Other applications can communicate...

Posted by Maurice | 1 comment(s)

Filed under: , , , , ,

Using WF4 bookmarks with IWorkflowInstanceExtension
Note: This blog post is written using the .NET framework 4.0 Beta 2 In this previous blog post I showed how to create an asynchronous activity using the NativeActivity and CreateBookmark to pause a workflow execution. Using that in a WorkflowApplication...

Posted by Maurice | 2 comment(s)

Filed under: , , , , ,

Flowing transaction into a workflow using WF4
One of the things that wasn’t possible in Windows Workflow Foundation 3 was flowing transaction over a WCF service request into a workflow. We could have transactions on the client, we could have transactions on the server but they would not be able to...

Posted by Maurice | 5 comment(s)

Filed under: , , , ,

More Posts Next page »