Integrating Integrators – BizTalk, Windows Azure, Windows Workflow, and Beyond
Join
Sign in
Search Options
Search Everything
Search Windows Workflow
Home
AppFabric
BizTalk Server
Windows Azure
Windows Workflow
Jobs (Hire A Guru)
More ...
Home
»
Windows Workflow
»
Windows Workflow Community Blogs via Syndication
»
April, 2010
April, 2010
Windows Workflow
This is the top level group for Microsoft Windows Workflow Foundation. Find blogs, samples, videos, and learning resources for various versions of workflow including 3.0, 3.5, and 4.0 here.
Get this RSS feed
Home
Blog
Files
Wiki
Sitewide Application Navigation
Home
Blogs
Media
Forums
Wikis
Groups
Options
Email Blog Author
RSS for posts
Monthly Archive List
Archives
May 2013
(11)
April 2013
(11)
March 2013
(10)
February 2013
(7)
January 2013
(14)
December 2012
(7)
November 2012
(7)
October 2012
(10)
September 2012
(8)
August 2012
(7)
July 2012
(22)
June 2012
(10)
May 2012
(6)
April 2012
(10)
March 2012
(4)
February 2012
(6)
January 2012
(8)
December 2011
(11)
November 2011
(8)
October 2011
(11)
September 2011
(23)
August 2011
(18)
July 2011
(2)
June 2011
(5)
May 2011
(17)
April 2011
(22)
March 2011
(25)
February 2011
(11)
January 2011
(20)
December 2010
(17)
November 2010
(10)
October 2010
(7)
September 2010
(2)
August 2010
(3)
July 2010
(1)
June 2010
(7)
May 2010
(4)
April 2010
(11)
March 2010
(12)
February 2010
(7)
January 2010
(25)
December 2009
(23)
November 2009
(20)
October 2009
(3)
September 2009
(1)
July 2009
(2)
June 2009
(2)
Tags
.NET
AppFabric
ASP.NET
Azure
Cloud
Community News
Denali
designer
expressions
ExpressionTextBox
Kushal Shah
MVC
Sharepoint 2010
SharePoint 2013
SSAS
Tabular Model
Talks
Visual Studio
WCF
WF
WF 4.0
WF 4.5
WF4
Workflow
Workflowrkflow
Windows Workflow Community Blogs via Syndication
Windows Workflow Foundation related bloggers. All content is property of the original blog owner.
RSS for posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Windows Workflow Community Blogs via Syndication
Extending Unit Tests in Visual Studio
Posted
over 3 years ago
by
Anonymous
It’s funny how you walk around with a question on your mind for a couple weeks and then one day it just suddenly feels like the ‘right time’ to go look for the answer. Question: Does VS 2010 allow you to extend the (nice) integrated unit testing to run tests in custom ways? Answer: Yes! Actually it was easy to find a guide with a sample [RunAsUnitTest] extension on the VS Team Test blog. [RunAs = ‘‘run as user’)] The scheme is: define your own custom [TestClass] attribute, and VS will load tests...
Windows Workflow Community Blogs via Syndication
Workflow Foundation 4.0 Activity Data Model (III)
Posted
over 3 years ago
by
Anonymous
We talked about WF4 Activity overview and WF parameters in particular in previous posts. In this installment, I'm going to focus on WF variables. Variable Variables are modeled by Variable class. namespace System.Activities { public abstract class Variable : LocationReference { public ActivityWithResult Default { get ; set ; } public string Name { get ; set ; } … public object Get( ActivityContext context); public void Set( ActivityContext context, object value); } } public sealed class Variable...
Windows Workflow Community Blogs via Syndication
In which I learn that MEF Composes Parts, not ExportDefinitions
Posted
over 3 years ago
by
Anonymous
[Rewrite - 06/04/10] Here’s a little MEF sample (minus definition of TestMetadataFilteringCatalog) that I wrote, (not intending it to be a sample): Its operation confused the heck out of me. I couldn’t understand why both FooTest and BarTest were being populated in p.Actions. Because function Filter() should only match exports with metadata: Category == Category.Y. I started looking at MEF because we are thinking of using the composition scheme in a new project. While reading more about it, I came...
Windows Workflow Community Blogs via Syndication
WF State Machine Activity Pack CTP1 Released
Posted
over 3 years ago
by
Anonymous
The WF State Machine Activity Pack CTP1 is released on CodePlex NOW!! Please check it out. Last year in PDC2009, I ran a chalk talk on our work on WF 4 State Machine Activities and promised the team would ship an implementation for public review after the release of Visual Studio 2010 . Today, I am so excited to let you know that we have delivered it on CodePlex as planned. This CTP contains a state machine runtime and a graphical state machine designer implementation, and they are optimized to handle...
Windows Workflow Community Blogs via Syndication
WF ADO.NET Activity Pack CTP1 Released
Posted
over 3 years ago
by
Anonymous
We are happy to announce that we have released the WF ADO.NET Activity Pack CTP1 on CodePlex . The WF ADO.NET Activity Pack CTP1 contains a set of WF 4 Activities based on .NET Framework Data Providers . These activities enable accessing a database through SQL commands or stored procedures within a workflow. You can drag-and-drop the ADO.NET Activities to your designer surface and access the database just like what you can do with ADO.NET. It is a very simple way for you to integrate business data...
Windows Workflow Community Blogs via Syndication
WF3 Design Time Performance - III
Posted
over 3 years ago
by
Anonymous
By this time you are saying, I don't want tips/trouble shooting anymore. I have a large workflow and I cant really re-factor it further. How can I improve the performance? One of the customers actually told us that the way his system was designed, re-factoring might result into affecting runtime performance since he would need to be passing context across different State Machines. Hence, he would rather take the design time performance hit, than the runtime performance issues. Well, we have heard...
Windows Workflow Community Blogs via Syndication
WF3 Design Time Performance - II
Posted
over 3 years ago
by
Anonymous
Recently, we worked with one of the customers whose designer launch was painfully slow. The project was a medium sized one and hence the performance degradation was particularly baffling. To figure out what's wrong, I did an Attach to Process(to debug) with another VS instance to the VS with the workflow designer and turned on all the exceptions. Next, I tried to launch the workflow designer and Whoa… I am getting hundreds of File IO Not Found Exceptions. No wonder the performance was slow. I...
Windows Workflow Community Blogs via Syndication
Workflow Foundation 4.0 Activity Data Model (II)
Posted
over 3 years ago
by
Anonymous
In the 1st segment , I talked about high level principle for WF4’s data model design. I’m going to talk about WF Argument in particular in this post. Argument We’ve briefly touched this before: in WF4, arguments are modeled by Argument class. namespace System.Activities { public abstract class Argument { public Type ArgumentType { get ; internal set ; } public ArgumentDirection Direction { get ; internal set ; } public ActivityWithResult Expression { get ; set ; } … public object Get( ActivityContext...
Windows Workflow Community Blogs via Syndication
WF3 Design Time Performance - I
Posted
over 3 years ago
by
Anonymous
Before, we start talking about the WF3 design time performance, let me clarify some of the terminologies: 1. WF3 is the version of Workflow shipped as part of .NET Framework 3.0 and 3.5. Note that WF3 is also shipped as part of .NET Framework 4.0. Meaning, System.Workflow.* assemblies are shipped as part of the latest version of the framework. 2. WF4 is the latest version of Workflows we are shipping first time as part of .NET Framework 4.0. Meaning, System.Activities.* assemblies are shipped for...
Windows Workflow Community Blogs via Syndication
Workflow Foundation 4.0 Activity Data Model (I)
Posted
over 3 years ago
by
Anonymous
In previous blogs , we went through how define an Activity’s execution logic. But this is not enough. To build any meaningful Activity, developers also need to the activity’s state and data flow. In this post, I’m going to talk about WF4’s Activity data model. Argument and Variable 101 WF is just another higher level programming language that share a lot of similarity with popular imperative procedural programming languages. So let’s first take a look at data model of a typical procedural language...
Windows Workflow Community Blogs via Syndication
Least discoverable feature: changing the Workflow Designer fonts and colors
Posted
over 3 years ago
by
Anonymous
The MSDN documentation on the WF designer shell has a very short section describing how WF designer fonts and colors work. Here is a bit more detail. You can manually change the colors and fonts used by the WF designer using the Tools->Options dialog box. The Workflow Designer for WF 4.0 does not have its own color scheme/font scheme context. Instead, it uses the environment fonts and colors. To change the color scheme: Go to Tools->Options to launch the dialog Under the Environment node, select...
Page 1 of 1 (11 items)