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
New Hands On Lab - Introduction to WF4
Posted
over 3 years ago
by
Ron Jacobs
1
Comments
A couple of weeks ago I ran across a very interesting tool called Feature Builder . As I watched the videos about this tool I realized that it represented an opportunity to deliver Hands on Labs (along with other interesting things) directly inside...
Ron Jacobs
WF4 Activities Best Practices
Posted
over 3 years ago
by
Ron Jacobs
0
Comments
Lately on http://endpoint.tv we have been doing a series called WF4 Activities Best Practices with Leon Welicki. Many of you wrote in asking for the sample code so I’ve published on MSDN Code Gallery - WF4 Activity Best Practices Sample . Be...
Ron Jacobs
Stepping Through .NET Source with VS2010 and .NET 4
Posted
over 3 years ago
by
Ron Jacobs
4
Comments
This morning I stumbled across something so cool… I had no idea it existed (I know some of you are saying… “What he didn’t know about this?) How many times have you wanted to debug right into the source of .NET? The feature is there, just turn it...
Ron Jacobs
WF Tip: Use a StringWriter to capture WriteLine Activity output when testing
Posted
over 3 years ago
by
Ron Jacobs
0
Comments
Question: Suppose you want to test an activity that uses WriteLine and you want to verify the output. How do you do it? Answer: Add a StringWriter to the Extensions collection before running your test Testing this activity Use this test ...
Ron Jacobs
System.Web.Routing RouteTable not working with IIS?
Posted
over 3 years ago
by
Ron Jacobs
6
Comments
Most of the time I write simple apps that run in the local ASP.NET development server. I noticed when I started working with IIS more because of Windows Server AppFabric that my routes were not working when the web application is deployed in IIS. For...
Ron Jacobs
AppFabric-enabled WCF Data Service Walkthrough (C#)
Posted
over 3 years ago
by
Ron Jacobs
0
Comments
In this walkthrough I’ll show you how to use the AppFabric-enabled WCF Data Service (C#) template for Visual Studio 2010 to enhance your WCF Data Services by providing Monitoring events and errors to the AppFabric Data Store Eliminating...
Ron Jacobs
AppFabric-enabled WCF Data Service Walkthrough (VB)
Posted
over 3 years ago
by
Ron Jacobs
0
Comments
In this walkthrough I’ll show you how to use the AppFabric-enabled WCF Data Service (VB) template for Visual Studio 2010 to enhance your WCF Data Services by providing Monitoring events and errors to the AppFabric Data Store Eliminating the need to use...
Ron Jacobs
AppFabric-enabled WCF Data Service Templates (C#/VB)
Posted
over 3 years ago
by
Ron Jacobs
0
Comments
After working out how to do the right thing when using WCF Data Services with Windows Server AppFabric I’ve now created a template you can use directly from Visual Studio. The templates are available from Visual Studio Gallery or directly from within...
Ron Jacobs
Make WCF Simpler
Posted
over 3 years ago
by
Ron Jacobs
0
Comments
If there is one thing I hear from people over and over again it is this. Please make WCF simpler, easier to understand and use. I totally agree with this sentiment. In fact, in .NET 4 we made it much easier but we still have a long way to go. Once in...
Ron Jacobs
endpoint.tv - Workflow Messaging Architecture with Dave Cliffe
Posted
over 3 years ago
by
Ron Jacobs
0
Comments
In this episode, Dave Cliffe, Program Manager for Workflow Services, describes the architecture of the Workflow Services infrastructure. For more information, see the Workflow Foundation developer center on MSDN .
Ron Jacobs
Watch Out! Overloading Constructors on XAML based Activities
Posted
over 3 years ago
by
Ron Jacobs
0
Comments
This morning I was refactoring some code and I decided to create a partial class with an overloaded constructor. When I did this, suddenly everything quit working. My tests were failing as though the workflow didn’t even run but no exceptions were...
Ron Jacobs
Need Help Moving from WF 3.5 to WF 4?
Posted
over 3 years ago
by
Ron Jacobs
0
Comments
Here are some helpful resources Windows Workflow Foundation (WF) Migration Guidance for WF 4 This Code Gallery project contains the code samples to help .NET developers better understand and evaluate Windows Workflow Foundation (WF) in the Microsoft...
Ron Jacobs
Designers for Custom Activities
Posted
over 3 years ago
by
Ron Jacobs
0
Comments
Morgan Skinner created a great post describing how you can associate designers with custom activities. Check it out here .
Ron Jacobs
Ron Jacobs Tech-Ed North America Sessions
Posted
over 3 years ago
by
Ron Jacobs
1
Comments
My Tech-Ed (or is it TechEd?) sessions are now available The Total Noob’s Guide Windows Workflow Foundation 4 Don’t know a thing about Windows Workflow Foundation (WF4) in Microsoft .NET Framework 4, but want to learn? No problem. Join us for this session...
Ron Jacobs
Working with OutArgument<T> in Workflow
Posted
over 3 years ago
by
Ron Jacobs
0
Comments
If you want to assign a value to an OutArgument in your workflow here is something you need to keep in mind. If your OutArgument is something simple like a value type or a string you can simply write to it directly If your OutArgument is something...
Ron Jacobs
New Native Activity Item Templates for Visual Studio 2010
Posted
over 3 years ago
by
Ron Jacobs
1
Comments
I’ve been creating a lot of Native Activities lately and to do it I would add a new item to my project using the Code Activity template. I kept wishing for a Native Activity template so now I’ve created one. Install the Native Activity...
Ron Jacobs
First Wave of AppFabric Patches
Posted
over 3 years ago
by
Ron Jacobs
0
Comments
Thanks to Damir Dobric You might want to pick up these patches KB980423 FIX: You experience several issues when you use Powershell cmdlets or AppFabric features in IIS 7.0 or IIS 7.5 KB983484 Some services are preloaded unexpectedly when you start a website...
Ron Jacobs
CancellationScope Activity Updated for .NET 4 RTM
Posted
over 3 years ago
by
Ron Jacobs
1
Comments
Update: 6/24 – updated sample to show how unhandled exceptions and the UnhandledException delegate impact this activity Nearly a year ago I created a CancellationScope Activity sample and posted it on CodeGallery for .NET 4 Beta 1. I went...
Ron Jacobs
endpoint.tv - How to Do API Key Verification with a WCF WebHttp (REST) Service
Posted
over 3 years ago
by
Ron Jacobs
0
Comments
In .NET 3.5, we created the REST Starter Kit as a way to get you up and running with RESTful services. Now that .NET 4 is out, people are asking how to do things like API Key Verification in .NET 4. In this episode, I'll walk you through a sample based...
Ron Jacobs
endpoint.tv - Windows Server AppFabric Local Security
Posted
over 3 years ago
by
Ron Jacobs
0
Comments
In this episode, Michael McKeown describes the security model used in Windows Server AppFabric, which spans Windows Security Groups and SQL Server Database Roles.
Ron Jacobs
New WCF Interop Dev Center on MSDN
Posted
over 3 years ago
by
Ron Jacobs
2
Comments
From time to time people will come to me with an interop problem. I have to say I’m the last guy on earth you should ask about interop problems. After all – I don’t ever need to solve them because I use .NET everywhere. Fortunately there are...
Ron Jacobs
How to do API Key Verification for REST Services in .NET 4
Posted
over 3 years ago
by
Ron Jacobs
6
Comments
Recently somebody asked me about doing APIKey verification in .NET 4. Previously in .NET 3.5 we provided the REST Starter Kit which included a fair bit of server side code to enable a collection of RequestInterceptor objects that we showed doing API Key...
Ron Jacobs
endpoint.tv - Windows Server AppFabric - Server Farm Setup
Posted
over 3 years ago
by
Ron Jacobs
0
Comments
You asked for it...here it is. In this episode, Byron Tardif is back to explain how you can setup Windows Server AppFabric in a server farm environment. For more information, see the Windows Server AppFabric Developer Center on MSDN .
Ron Jacobs
Monitoring WCF Data Service Exceptions with Windows Server AppFabric
Posted
over 3 years ago
by
Ron Jacobs
0
Comments
After my previous post about how you can monitor service calls with AppFabric, several people asked about how you can capture errors with AppFabric. Unfortunately, the default error handling behavior of WCF Data Services does not work well with AppFabric...
Ron Jacobs
Tracking WCF Data Services with Windows Server AppFabric
Posted
over 3 years ago
by
Ron Jacobs
6
Comments
WCF Data Services provides a very simple model driven way to expose data using REST and the OData format. As I was preparing my talk for Tech-Ed on Implementing REST in .NET I was asking myself if there would be any value in using Windows Server AppFabric...
Page 5 of 14 (326 items)
«
3
4
5
6
7
»