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
»
March, 2011
March, 2011
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
(8)
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
(WF4) Why can’t I change the TypeArgument of Switch<> or FlowSwitch<> using the property grid?
Posted
over 2 years ago
by
Syndicated Workflow Author
I don’t remember anyone ever actually asking me this, but I found myself wondering the question while rustling up a quick rehosting app. Foreach<> activity lets you change the TypeArgument dynamically via the property grid. But FlowSwitch<> doesn’t. Why? As usual, although it take a while, I like investigating issues like this in a practical way. Is it possible for us to ‘Add’ the TypeArgument property in the property grid for FlowSwitch<> in the same way that ForEach<> does...
Windows Workflow Community Blogs via Syndication
PDC10–WF4 Session “Windows Workflow Futures”
Posted
over 2 years ago
by
Syndicated Workflow Author
Last year we at PDC10 we gave you a preview of the next release of Windows Workflow Foundation. The video has just been posted to Channel 9. Windows Workflow Futures Speaker: Ron Jacobs Learn about the key investments we’re making in Windows Workflow Foundation (WF). See the WF improvements we’re working on for workflow authoring, hosting and management. Learn how we’re bringing WF to the cloud, and how WF and Windows Azure AppFabric will provide a great middle-tier platform for building, deploying...
Windows Workflow Community Blogs via Syndication
WCF Extensibility – IContractBehavior
Posted
over 2 years ago
by
Syndicated Workflow Author
This post is part of a series about WCF extensibility points. For a list of all previous posts and planned future ones, go to the index page . Going down the list of behaviors, the second one to be covered is the IContractBehavior . Like the other ones, it can be used to inspect or change the contract description and its runtime for all endpoints which have that contract. For example, the behavior can validate the contract against the binding to ensure that the it’s used the contract is only used...
Windows Workflow Community Blogs via Syndication
(WF4) Rolling your own Undo Units in Workflow Designer .net 4.0
Posted
over 2 years ago
by
Syndicated Workflow Author
A long time go in a galaxy very, very close (so close it could be coincidental or indeed the same) I remember writing a couple things which touched upon Undo and Redo in workflow designer. Since someone invented hyperlinks, I should probably use this neat feature of the interwebs and point you at them. “Undoable Layout for the Freeform Canvas Activity Designer” - This article contains exploration around the idea of building a Custom Flowchart Designer. In the article I found that it is hard to get...
Windows Workflow Community Blogs via Syndication
WCF Extensibility - IServiceBehavior
Posted
over 2 years ago
by
Syndicated Workflow Author
This post is part of a series about WCF extensibility points. For a list of all previous posts and planned future ones, go to the index page . The first behavior covered in this series is the IServiceBehavior . It can be used to inspect or change the entire service description and runtime. For example, to collect information about all endpoints in the service, to apply some common behavior to all endpoints in the service, anything which affects the global service state, the service behavior is a...
Windows Workflow Community Blogs via Syndication
Why can’t I change the TypeArgument of Switch<> or FlowSwitch<> using the property grid?
Posted
over 2 years ago
by
Syndicated Workflow Author
I don’t remember anyone ever actually asking me this, but I found myself wondering the question today while rustling up a quick rehosting app. Foreach<> activity lets you change the TypeArgument dynamically via the property grid. But FlowSwitch<> doesn’t. Why? As usual, although it take a while, I like investigating issues like this in a practical way. Is it possible for us to ‘Add’ the TypeArgument property in the property grid for FlowSwitch<> in the same way that ForEach<>...
Windows Workflow Community Blogs via Syndication
AppFabric WCF HTTP Service Template
Posted
over 2 years ago
by
Syndicated Workflow Author
Windows Communication Foundation (WCF) is Microsoft’s unified programming model for building service-oriented applications. Windows Server AppFabric provides tools for managing and monitoring your web services and workflows. WCF HTTP Service is a service that can be accessed by a simple HTTP POST/GET request and can return responses in plain XML and in JSON formats. The AppFabric WCF HTTP Service template brings these two products together providing the following features: Monitor the calls to your...
Windows Workflow Community Blogs via Syndication
WCF Extensibility – Behaviors
Posted
over 2 years ago
by
Syndicated Workflow Author
This post is part of a series about WCF extensibility points. For a list of all previous posts and planned future ones, go to the index page . The first part of this series will focus on the behaviors. There are four kinds of behaviors, depending on the scope to which they apply: service, endpoint, contract and operation behaviors. The behavior interfaces are the main entry points for almost all the other extensibility points in WCF – it’s via the Apply[Client/Dispatch]Behavior method in the behavior...
Windows Workflow Community Blogs via Syndication
ASP.NET WF4 / WCF and Async Calls
Posted
over 2 years ago
by
Syndicated Workflow Author
How should you use WF4 and WCF with ASP.NET? For this post I’ve created a really simple workflow and WCF service that delay for a specific amount of time and then return a value. Then I created an ASP.NET page that I can use to invoke the workflow and WCF service to test their behavior The Workflow Definition First off – let’s get one thing straight. When you create a workflow, you are creating a workflow definition . The workflow definition still has to be validated, expressions...
Windows Workflow Community Blogs via Syndication
RC of Entity Framework 4.1 (which includes EF Code First)
Posted
over 2 years ago
by
Syndicated Workflow Author
Last week the data team shipped the Release Candidate of Entity Framework 4.1. You can learn more about it and download it here . EF 4.1 includes the new “EF Code First” option that I’ve blogged about several times in the past. EF Code First provides a really elegant and clean way to work with data, and enables you to do so without requiring a designer or XML mapping file. Below are links to some tutorials I’ve written in the past about it: Code First Development with Entity Framework...
Windows Workflow Community Blogs via Syndication
Self-Signed SSL Certs on Azure
Posted
over 2 years ago
by
Syndicated Workflow Author
Under development you may create a self-signed cert to use when you deploy a web role to Azure. If this certificate is not properly created, when you deploy the web role, it will recycle constantly and you will be unable...
Windows Workflow Community Blogs via Syndication
Cancelling an AsyncCodeActivity
Posted
over 2 years ago
by
Syndicated Workflow Author
Even when AsyncCodeActivity.Cancel is called, the activity will still execute the EndExecute method, so it isn't immediately obvious why a second path of execution is necessary. Implementing this method is useful only when AsyncCodeActivityContext.MarkCanceled is implemented, which in turn is useful mainly when cancellation is meaningful for the underlying operation (i.e. if work already completed can be rolled back). In order to implement cancellation in a useful way, do the following: Call...
Windows Workflow Community Blogs via Syndication
endpoint.tv - WCF Web HTTP (REST) Test Tool Preview
Posted
over 2 years ago
by
Syndicated Workflow Author
The other day, I walked by the office where our team members from Shanghai work while in Redmond and I ran into Leo Shum, a test lead on the new WCF Web HTTP (REST) Test Tool. On this episode, Leo joins me in the studio to show you how this new tool works. Though it's not yet shipping, we definitely want to know what you think and how we can make it better. So take a look and let us know! Ron Jacobs http://blogs.msdn.com/rjacobs Twitter: @ronljacobs Blog Post by: Ron Jacobs
Windows Workflow Community Blogs via Syndication
Visual Studio 2010 SP1
Posted
over 2 years ago
by
Syndicated Workflow Author
Last week we shipped Service Pack 1 of Visual Studio 2010 and the Visual Studio Express Tools. In addition to bug fixes and performance improvements, SP1 includes a number of feature enhancements. This includes improved local help support , IntelliTrace support for 64-bit applications and SharePoint, built-in Silverlight 4 Tooling support in the box, unit testing support when targeting .NET 3.5, a new performance wizard for Silverlight, IIS Express and SQL CE Tooling support for web projects...
Windows Workflow Community Blogs via Syndication
AppFabric WCF Service Template (C#)
Posted
over 2 years ago
by
Anonymous
Now available Download the AppFabric WCF Service Template C# Windows Communication Foundation (WCF) is Microsoft’s unified programming model for building service-oriented applications. Windows Server AppFabric provides tools for managing and monitoring your web services and workflows. The AppFabric WCF Service template brings these two products together providing the following features: Monitor the calls to your service across multiple servers with AppFabric Monitoring Create custom Event Tracing...
Windows Workflow Community Blogs via Syndication
Using a SymbolResolver to access host environment information
Posted
over 2 years ago
by
Anonymous
To access environment information from within an activity, you'll need to use the System.Activities.Hosting.SymbolResolver class. Here's the code to access the symbol resolver from within an activity: public sealed class SymbolUser : CodeActivity { protected override void Execute(CodeActivityContext context) { SymbolResolver symbolResolver = context.GetExtension<SymbolResolver>(); MyObject obj = symbolResolver["CustomObject"] as MyObject; Console.WriteLine(obj.MyString); ...
Windows Workflow Community Blogs via Syndication
Observable Collection Projections (Synchronized MVVM Collections)
Posted
over 2 years ago
by
Anonymous
(Category: Rambling) Sometimes it’s funny how the same simple problem comes up over and over again, and people immediately solve it over and over again. Of course usually I only notice it when I am one of those people. Some time back I found myself writing a INotifyCollectionChanged collection synchronizer for working around a ModelItemCollection bug in workflow designer. The bug we were working around was nothing to do with change notification at all. The workaround was basically to create a ValueConverter...
Windows Workflow Community Blogs via Syndication
Free Video Training: ASP.NET MVC 3 Features
Posted
over 2 years ago
by
Anonymous
A few weeks ago I blogged about a great ASP.NET MVC 3 video training course from Pluralsight that was made available for free for 48 hours for people to watch. The feedback from the people that had a chance to watch it was really fantastic. We also received feedback from people who really wanted to watch it – but unfortunately weren’t able to within the 48 hour window. The good news is that we’ve worked with Pluralsight to make the course available for free again until March 18th. ...
Windows Workflow Community Blogs via Syndication
DevConnections Conference
Posted
over 2 years ago
by
Anonymous
The excellent DevConnections conference will be held in Florida later this month (March 27th to 30th). DevConnections features multiple concurrent tracks – including ASP.NET Connections, Silverlight Connections, Visual Studio Connections, SQL Server Connections, and SharePoint Connections. I’ll be doing a keynote on the first day, and there will be dozens of fantastic talks that week by some of the best presenters in the .NET community. You can learn more about the conference here . I...
Windows Workflow Community Blogs via Syndication
Error message: "The argument of type '<type>' cannot be used. Make sure that it is declared on an activity."
Posted
over 2 years ago
by
Anonymous
The following error might occur when an activity executes: The argument of type '<type>' cannot be used. Make sure that it is declared on an activity. If the type above refers to an implementation child, then it's possible that it's being created in the Execute method of the activity. If this is the case, try moving it to the CacheMetadata method- this is the method that tells the runtime about the implementation details of the activity. Adding an implementation child during...
Page 1 of 2 (25 items)
1
2