Sign in
Ron Jacobs
Windows Workflow Foundation
Windows Workflow Foundation
Follow Me
Facebook
Twitter
YouTube
Workflow TV
RSS
http://channel9.msdn.com/Shows/Workflow-TV
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
.NET 4
AppFabric
AppFabric Cache
ARCast
Aspiring Architect
Case Study
CodeContracts
endpoint.tv
MVC
OData
Platform Update 1
PowerShell
REST
SOA Patterns
TDD
Unit Testing
Versioning
Video Case Study
VS2010
WCF
WCF Data Services
WCF4
WF4
WFNews
Workflow Services
Archive
Archives
January 2013
(1)
September 2012
(1)
August 2012
(1)
July 2012
(5)
June 2012
(1)
May 2012
(1)
December 2011
(3)
October 2011
(1)
September 2011
(2)
August 2011
(3)
July 2011
(3)
June 2011
(9)
May 2011
(13)
April 2011
(8)
March 2011
(7)
February 2011
(2)
January 2011
(13)
December 2010
(5)
November 2010
(3)
October 2010
(6)
September 2010
(6)
August 2010
(3)
July 2010
(7)
June 2010
(22)
May 2010
(9)
April 2010
(16)
March 2010
(4)
February 2010
(8)
January 2010
(2)
December 2009
(5)
November 2009
(1)
September 2009
(4)
July 2009
(2)
June 2009
(4)
May 2009
(1)
April 2009
(1)
March 2009
(7)
February 2009
(4)
January 2009
(8)
November 2008
(6)
October 2008
(6)
September 2008
(1)
August 2008
(6)
July 2008
(4)
June 2008
(4)
May 2008
(3)
April 2008
(6)
March 2008
(6)
February 2008
(2)
January 2008
(2)
October 2007
(3)
August 2007
(1)
July 2007
(2)
June 2007
(2)
April 2007
(3)
March 2007
(1)
February 2007
(1)
January 2007
(3)
December 2006
(3)
November 2006
(11)
October 2006
(5)
September 2006
(3)
August 2006
(1)
July 2006
(2)
March 2006
(1)
February 2006
(2)
January 2006
(1)
December 2005
(2)
September 2005
(3)
July 2005
(1)
June 2005
(1)
May 2005
(2)
April 2005
(3)
March 2005
(5)
February 2005
(2)
January 2005
(2)
December 2004
(1)
October 2004
(3)
June 2004
(2)
May 2004
(1)
April 2004
(1)
February 2004
(4)
MSDN Blogs
>
Ron Jacobs
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Ron Jacobs
The Workflow Parallel Activity and Task Parallelism
Posted
over 2 years ago
by
Ron Jacobs
2
Comments
“ Task parallelism (also known as function parallelism and control parallelism ) is a form of parallelization of computer code across multiple processors in parallel computing environments. Task parallelism focuses on distributing execution processes...
Ron Jacobs
Windows Workflow Foundation (WF4) Activities and Threads
Posted
over 2 years ago
by
Ron Jacobs
0
Comments
Most of the time in software when we say “Parallel” we mean that multiple threads are being used to do work concurrently. Because of this, many customers ask if the Parallel activity works this way in Windows Workflow Foundation. I know there...
Ron Jacobs
Authoring Activities in Code or XAML
Posted
over 2 years ago
by
Ron Jacobs
0
Comments
With Windows Workflow Foundation (WF4) you can author activities in Code or XAML. Each has advantages and disadvantages Visibility Advantage – XAML You can author them in the Workflow Designer. Here is a activity I’ve been working with today...
Ron Jacobs
XAML and Activity Assembly Spoofing
Posted
over 2 years ago
by
Ron Jacobs
2
Comments
Recently I was contacted by a customer who had read my posts on Versioning and was investigating some interesting behavior of activity designers (more on this in a future post). But this discussion got me to thinking. As I pointed out in my...
Ron Jacobs
How To Load WF4 Workflow Services from a Database with IIS/AppFabric
Posted
over 2 years ago
by
Ron Jacobs
2
Comments
This morning I saw a message post on the .NET 4 Windows Workflow Foundation Forum titled Load XAMLX from database . I’ve been asked this question many times. How can I store my Workflow Service definitions (xamlx files) in a database with IIS and...
Ron Jacobs
Creating a State Machine in Code
Posted
over 2 years ago
by
Ron Jacobs
4
Comments
Lots of people create state machines. There are many examples on the web of people who are building class libraries to make it easy to create a state machine. These people typically don’t need (or want) to use a workflow designer or see a...
Ron Jacobs
Passing arguments to Workflow Activities (again)
Posted
over 2 years ago
by
Ron Jacobs
1
Comments
Way back in September 2009 I wrote WF4: Passing Arguments to Activities . In the years since I’ve learned a few things. Download code for this post Windows Workflow Foundation (WF4) - Workflow Arguments Example Watch Out for Initialization Syntax...
Ron Jacobs
Tracking Child Workflow with InvokeWorkflow
Posted
over 2 years ago
by
Ron Jacobs
0
Comments
For background on this issue see WF4 How To Invoke a Child Workflow as XAML . Thanks to rfcdejong who recently logged an issue on our http://wf.CodePlex.com site Child activity's ignore the Tracking Participant / Tracking Profile ? Because of this...
Ron Jacobs
Passing Values between Workflow Activities
Posted
over 2 years ago
by
Ron Jacobs
2
Comments
It’s been a long while but in the old WF 3.5 days as I recall there was this funky binding thing that allowed you to pass values from the output of one activity directly to the input of another activity. Windows Workflow Foundation (WF4) does not...
Ron Jacobs
Performance Review Time
Posted
over 2 years ago
by
Ron Jacobs
2
Comments
Well it’s that time of year again. Time to write the performance review. While working out at the gym this morning I had a thought… What if I shared my self-evaluation performance review with you? After all, you are very important to...
Ron Jacobs
How to handle the trailing slash in a WCF HTTP Service
Posted
over 2 years ago
by
Ron Jacobs
0
Comments
The other day I got this tweet from Adam @ronljacobs anyway to do something like: [WebGet(UriTemplate = "{id}", IgnoreTrailingSlash = true)] want {id} and {id}/ to be the same Off hand I didn’t know the answer but now that I’m back from...
Ron Jacobs
Using Workflow Services and Silverlight Together
Posted
over 2 years ago
by
Ron Jacobs
3
Comments
In my previous post on WorkflowServices, CanCreateInstance and Silverlight I shared with you some of the pain that I went through in building my first Silverlight / Workflow Services app. Much of this pain was just because I have not done a great deal...
Ron Jacobs
.NET Framework Platform Update 1–Supported Runtime Config
Posted
over 2 years ago
by
Ron Jacobs
1
Comments
Update 6/21 - there is a fix for this known issue see KB2468871 look for issue #9 I have found that when you set your app to use .NET Framework Platform Update 1 Visual Studio adds something to your configuration file. It is trying to do the right...
Ron Jacobs
Delay signing Visual Studio and XamlBuildTask
Posted
over 2 years ago
by
Ron Jacobs
0
Comments
While working on signing assemblies you may run into a problem I encountered this morning so here goes… Problem XamlBuildTask fails when referencing a Delay Signed assembly To see this in action try the following Create a Workflow Console Application...
Ron Jacobs
Retargeting Visual Studio Test Projects for .NET 4 Platform Update 1.
Posted
over 2 years ago
by
Ron Jacobs
0
Comments
If you are using .NET 4 Platform Update 1 to do unit testing you may encounter this dialog box when you try to change the target framework of your test project Tip: You can press Ctrl+C on a message box to copy the text to the clipboard. If you...
Ron Jacobs
How to eliminate tempuri.org from your service WSDL
Posted
over 2 years ago
by
Ron Jacobs
0
Comments
tempuri.org is the default namespace applied to WCF Services and Workflow Services. You can and should specify your service namespace. It is recommended that you explicitly specify a name and namespace for the service contract, and an action for...
Ron Jacobs
Microsoft.Activities and Microsoft.Activities.UnitTesting now available via NuGet
Posted
over 2 years ago
by
Ron Jacobs
0
Comments
Update 12/3/2011: Microsoft.Activities is now Microsoft.Activities.Extensions When I first saw NuGet I knew I had to find a way to take advantage of this great new way to deliver code to you. It took a few months but finally the other day I decided...
Ron Jacobs
How to troubleshoot Windows Server AppFabric and Workflows
Posted
over 2 years ago
by
Ron Jacobs
0
Comments
If you are having trouble with a Workflow deployed in IIS with Windows Server AppFabric, the event log can be a wonderful tool to help diagnose problems. First Step: Check the Windows Application Event Log Open Event Viewer Expand Windows Logs Select...
Ron Jacobs
WF4 Advanced State Machine Stuff
Posted
over 2 years ago
by
Ron Jacobs
12
Comments
So you want to know how the state machine really works? Take a look at the WF4 State Machine Explorer . This sample is designed to show you how StateMachine works with activities. There are three transitions from State1. To State 2 which is triggered...
Ron Jacobs
How to detect if the .NET Framework Platform Update 1 is installed
Posted
over 2 years ago
by
Ron Jacobs
1
Comments
Humans Go to Control Panel / Programs / Programs and Features / View Installed Updates Use the Search Box to search the updates for KB2495593 KB2478063 Or if you prefer, search the list your self Microsoft .NET Framework 4 Platform Update 1 - Runtime...
Ron Jacobs
How to create a WF4 WorkflowServiceHostFactory for AppFabric Auto-Start
Posted
over 2 years ago
by
Ron Jacobs
4
Comments
Sometimes when using Windows Workflow Foundation (WF4) you need to create a custom WorkflowServiceHostFactory. There are a couple of main reasons why you would want to do this. To configure the WorklfowServiceHost in some way like adding an extension...
Ron Jacobs
Windows Server AppFabric–Reading the Monitoring Database from a Web Application
Posted
over 2 years ago
by
Ron Jacobs
1
Comments
If you want to read the AppFabric Monitoring Database from a Web Application your web app will have to have permission to login. If you try to run a web app that does not have permission you will likely see this Cannot open database "AppFabricMonitoringDB"...
Ron Jacobs
WorkflowServices, CanCreateInstance and Silverlight
Posted
over 2 years ago
by
Ron Jacobs
1
Comments
I can’t count how many times this has bitten me… You create a new Workflow Service. You create a client app, add a service reference and boom! There is no context attached to the incoming message for the service and the current operation is...
Ron Jacobs
How you can make WF/WCF better
Posted
over 2 years ago
by
Ron Jacobs
0
Comments
Are you sometimes frustrated by WF/WCF? Let’s just be honest for a moment… all of us are frustrated by WF/WCF at times. Even those of us who work on the product can probably think of a hundred ways we would like to make them better. However...
Ron Jacobs
Distributed System Versioning Myth #1
Posted
over 2 years ago
by
Ron Jacobs
1
Comments
One rather large pain point with distributed systems is versioning. There are things you can do that make this problem better and things you can do that make it worse. The worst thing you can do is pretend that this problem does not exist...
Page 2 of 14 (326 items)
1
2
3
4
5
»