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
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
(10)
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
vs2010
WCF
WF
WF 4.0
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
Subscription / Notification Engine (WF4 EditingContext Intro Part 5)
Posted
over 4 years ago
by
Anonymous
This part 5 of my 6 part series on the EditingContext. Introduction Sharing Functionality between Designers Host provided capabilities Providing callbacks for the host Subscription/Notification engine (you are here) Inspection, Default Services and Items In this post, we’re going to tie together a few of the things we’ve seen in the last few posts and show how we can wire up parts of the designer (or the hosting application) to changes made to the Items collection...
Windows Workflow Community Blogs via Syndication
VisualWorkflowTracking aka WorkflowSimulator
Posted
over 4 years ago
by
Anonymous
In the Beta2 SDK, we shipped a sample called WorkflowSimulator. Essentially, the sample is using the tracking APIs to have a visual understanding of the Workflow execution logic. Thus, as we hit “Run Workflow”, we get the debug kind of adornments on each activity that executed. Let’s actually dwell deeper and understand how we used the Designer and the Debugger APIs to achieve the same. To understand that, let’s take a step back and take a look at the debugging architecture: The most important piece...
Windows Workflow Community Blogs via Syndication
Providing Callbacks for the Host (WF4 EditingContext Intro Part 4)
Posted
over 4 years ago
by
Anonymous
This part 4 of my 6 part series on the EditingContext. Introduction Sharing Functionality between Designers (you are here) Host provided capabilities Providing callbacks for the host Subscription/Notification engine Inspection, Default Services and Items In addition to having a host provide an instance of a type to be used within the designer, it can also be used to pass an instance that will route callbacks to the host. I covered this briefly in a previous post ( Displaying...
Windows Workflow Community Blogs via Syndication
Host Provided Capabilities (WF4 EditingContext Intro Part 3)
Posted
over 4 years ago
by
Anonymous
This part 3 of my 6 part series on the EditingContext. Introduction Sharing Functionality between Designers Host provided capabilities (you are here) Providing callbacks for the host Subscription/Notification engine Inspection, Default Services and Items EditingContext is used by our primary hosting application, Visual Studio, to provide concrete implementations of certain services. The example that we will talk about here is the IExpressionEditorService . Now, one...
Windows Workflow Community Blogs via Syndication
Sharing Functionality Between Designers (WF4 EditingContext Intro Part 2)
Posted
over 4 years ago
by
Anonymous
This part 2 of my 6 part series on the EditingContext. Introduction Sharing Functionality between Designers (you are here) Host provided capabilities Providing callbacks for the host Subscription/Notification engine Inspection, Default Services and Items Setup We will need a custom activity, EmptyOne and designer called InteractWithServiceDesigner. using System.Activities; using System.ComponentModel; namespace blogEditingContext { [Designer( typeof (InteractWithServicesDesigner...
Windows Workflow Community Blogs via Syndication
Introduction to the WF4 Designer Editing Context (Part 1)
Posted
over 4 years ago
by
Anonymous
I want to briefly touch on the editing context and give a little introduction to its capabilities. This is part 1 of a 6 part series Introduction (you are here) Sharing Functionality between Designers Host provided capabilities Providing callbacks for the host Subscription/Notification engine Inspection, Default Services and Items The way to think about the editing context is that it is the point of contact between the hosting application, and the designer (and elements on the designer). ...
Windows Workflow Community Blogs via Syndication
ExpressionTextBox – works on Activity properties too!
Posted
over 4 years ago
by
Anonymous
So Matt Winkler read my previous post and said hey, what about properties of type Activity<foo>, can’t they be bound to ExpressionTextBoxes too? Snap, I had forgotten about that case. The answer is actually yes, because VisualBasicValue and VisualBasicReference derive from Activity, expressions are then assignable to Activity and then the activity can be scheduled. This is a special case of the property binding. The ExpressionTextBox always generates a VBValue or VBReference and if the returned...
Windows Workflow Community Blogs via Syndication
ExpressionTextBox – for arguments only (well mostly)
Posted
over 4 years ago
by
Anonymous
[12/19 edit: ExpressionTextBox is not strictly for arguments only, see the exception here ] In a previous post I alluded to the fact that you should be able to bind an ExpressionTextBox to a CLR property. My hazy memory was that this was done at one point in time by omitting the ArgumentToExpressionConverter from the Expression binding and mucking about with the OwnerActivity and/or PathToArgument properties. So I went ahead and modified my existing sample activity to use a property and changed my...
Windows Workflow Community Blogs via Syndication
Emitting the mc:Ignorable Instruction In Your WF4 XAML
Posted
over 4 years ago
by
Anonymous
Frequent forum guest Notre posed this question to the forums the other day noting that the XAML being produced from ActivityXamlServices.CreateBuilderWriter() was slightly different than the XAML being output from WorkflowDesigner.Save(). The reason for this stems from the fact that WorkflowDesigner leverages an additional internal type (which derives from XamlXmlWriter) in order to attach the mc:Ignorable attribute. Why use mc:Ignorable? From the source at MSDN: The mc XML namespace...
Windows Workflow Community Blogs via Syndication
Chalk talk in PDC09 - Future Directions for State Machine Workflows
Posted
over 4 years ago
by
Anonymous
In PDC this year, PDC2009 in Los Angeles, I got the chance to share with some of you on the future plan on State Machine in a chalk talk presentation, and did a demo of an early prototype with an Order Processing scenario. And I would like to thanks those of you who attended the session and gave valuable feedback. Thanks Matt Winkler for blogging on the chalk talk, I have received requests from some of you who were not able to attend the session, to share the content of the chalk talk. And...
Windows Workflow Community Blogs via Syndication
Welcome To Go With The Flow Blog
Posted
over 4 years ago
by
Anonymous
Welcome to Go With The Flow blog, where we focus on all aspects of Windows Workflow Foundation (WF) in .NET Framework, including technologies , news and various events. Through this blog, we hope we can have more communication and interaction with all of you .NET developers and help you have a better understanding of WF. The idea of creating this blog has been there for a while. Now it has been one and half months since Visual Studio 2010 and .NET Framework 4 Beta2 released, which for us is a perfect...
Windows Workflow Community Blogs via Syndication
AttachedProperty Part 2, Putting it Together
Posted
over 4 years ago
by
Anonymous
On my last post , Jason jumped right to the punchline in his comment here . He asks “if there is an easy way to have the properties value serialized out to the xaml.” First, let’s look at what we need to do from the XAML side. First, create a helper type with a getter and setter for the property that you want to attach. Here we’re going to attach comments: public class Comment { static AttachableMemberIdentifier CommentTextName = new AttachableMemberIdentifier( typeof (Comment), "CommentText"...
Windows Workflow Community Blogs via Syndication
I'm a ramblin' wreck from Georgia Tech and a helluva engineer!
Posted
over 4 years ago
by
Anonymous
This particular post has nothing to do with technology. I'm an avid college football fan and have always cheered for my alma mater, the Georgia Tech Yellow Jackets. Tonight, for the first time since I have been actively following them, we beat Clemson for the 2nd time this season (39-34) and earned a berth in the BCS Orange Bowl!! Not to downplay Clemson, however, as they put up a really good fight both times and it came down to who had the ball last. The first game was equally amazing to watch...
Windows Workflow Community Blogs via Syndication
WF4 Design Time AttachedPropertiesService and Attached Properties
Posted
over 4 years ago
by
Anonymous
I’ve been meaning to throw together some thoughts on attached properties and how they can be used within the designer. Basically, you can think about attached properties as injecting some additional “stuff” onto an instance that you can use elsewhere in your code. Motivation In the designer, we want to be able to have behavior and view tied to interesting aspects of the data. For instance, we would like to have a view updated when an item becomes selected. In WPF, we bind the style...
Windows Workflow Community Blogs via Syndication
WF4 ViewStateService
Posted
over 4 years ago
by
Anonymous
A comment posted by Notre asked for some more details about view state and attached property services, so I thought I would dive into those next. I will follow-up in a subsequent post on the AttachedPropertyService, as there is a little bit more going on there. Motivation Why do I care about viewstate? Well, usually it is because we want to write something down and store it for later that is not required for runtime. A common example of viewstate is the position of nodes within...
Windows Workflow Community Blogs via Syndication
Where is System.Activities.Design in WF4 Beta2 and Beyond?
Posted
over 4 years ago
by
Anonymous
I got an email over the weekend asking about this, and I realized that it’s somewhat buried in this post here . Anyway, in Beta1, you often saw System.Activities.Design. For beta2 (and RTM), one important change System.Activities.Design => System.Activities.Presentation The primary reason for this change is that the *.Design suffix is generally reserved for VS design extensibility. As our designer ships in the framework, *.Design was not the correct suffix. *.Presentation...
Windows Workflow Community Blogs via Syndication
Differentiating between Cut-Copy-Paste/Undo-Redo/Drag-Drop/Move
Posted
over 4 years ago
by
Anonymous
A couple of customers have asked this one, as they work with the Programming Model, how do I know if an activity has been drag-dropped vs Copy-Pasted vs an Undo-Redo happened. How do the customers use it? Well, for one of them they wanted to change the name of the activity if it is a Copy-Paste as against a Undo_Redo. For example. In case of a Copy-Pasted activity, the new name should be Sequence2. While for a Undo-Redo, the name should still be Sequence1. The bad news is there is no simple way to...
Windows Workflow Community Blogs via Syndication
Introduction to Windows Workflow 4.0
Posted
over 4 years ago
by
Anonymous
Note: I apologize in advance if this first post seems unorganized. There is a lot of material to cover and I couldn’t find a really good way to order the topics. Hang in there and hopefully it will start making sense. In order to help everyone get up to speed with build customization, I wanted to take a few posts to share our collective knowledge on the Workflow framework in .NET 4.0. In this first post I plan to tackle the different base classes that may be used when designing your own custom activities...
Windows Workflow Community Blogs via Syndication
Using untyped arguments in an ExpressionTextBox
Posted
over 4 years ago
by
Anonymous
The ExpressionTextBox sample code in the SDK works just fine in beta 2. The sample demonstrates the use of an ExpressionTextBox in a custom activity designer. In the sample, I implemented a simple MultiAssign activity, which assigns two values to two variables. In the example, I used untyped InArguments and OutArguments. That particular example was bad for a couple of reasons: If you don’t specify an ExpressionType on an ExpressionTextBox, you get a weird red box around invalid expressions inside...
Windows Workflow Community Blogs via Syndication
WF4, WCF and AppFabric Sessions @ PDC09
Posted
over 4 years ago
by
Anonymous
I’m taking this week off to catch up on everything I haven’t done the last two months and to celebrate the Thanksgiving holiday here in the US. PDC was a blast! It was incredibly awesome to meet so many folks interested in WF and talking with others about how they are using (or plan to use) WF4. I’ll be following up with a more detailed post on my talk, including demos and code, but I wanted to give a summary of the talks that came from my team at this PDC. Below is the diagram...
Page 23 of 25 (487 items)
«
21
22
23
24
25