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
»
December, 2010
December, 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
(9)
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
ASP.NET MVC 3: Layouts and Sections with Razor
Posted
over 3 years ago
by
Anonymous
This is another in a series of posts I’m doing that cover some of the new ASP.NET MVC 3 features: Introducing Razor (July 2nd) New @model keyword in Razor (Oct 19th) Layouts with Razor (Oct 22nd) Server-Side Comments with Razor (Nov 12th) Razor’s @: and <text> syntax (Dec 15th) Implicit and Explicit code nuggets with Razor (Dec 16th) Layouts and Sections with Razor (Today) In today’s post I’m going to go into more details about how Layout pages work with Razor. In particular, I’m going...
Windows Workflow Community Blogs via Syndication
Implementation Using FlowDecision & FlowSwitch
Posted
over 3 years ago
by
Anonymous
Implementation Using FlowDecision & FlowSwitch Within a FlowChart, the FlowDecision and FlowSwitch activities can each be used to implement the Simple Merge Pattern. FlowDecision The FlowDecision enables a binary Exclusive choice between to branches by having an output branch for...
Windows Workflow Community Blogs via Syndication
ASP.NET MVC 3: Razor’s @: and <text> syntax
Posted
over 3 years ago
by
Anonymous
This is another in a series of posts I’m doing that cover some of the new ASP.NET MVC 3 features: New @model keyword in Razor (Oct 19th) Layouts with Razor (Oct 22nd) Server-Side Comments with Razor (Nov 12th) Razor’s @: and <text> syntax (today) In today’s post I’m going to discuss two useful syntactical features of the new Razor view-engine – the @: and <text> syntax support. Fluid Coding with Razor ASP.NET MVC 3 ships with a new view-engine option called “Razor” (in addition to the...
Windows Workflow Community Blogs via Syndication
How to consume a WCF Service from a WF4 Workflow
Posted
over 3 years ago
by
Anonymous
Recently I saw a message on the WF4 Forum where someone was asking for help learning how to consume a WCF service from a Workflow. In this post I’m going to walk through how you can consume a WCF service from a Workflow where both the service and the workflow live in the same web site. This should be simple, but unfortunately it is not as simple as it should be. Create an ASP.NET Web Application Start Visual Studio 2010 and Create a new ASP.NET Web Application Add a new WCF Service to the project...
Windows Workflow Community Blogs via Syndication
ASP.NET MVC 3: Implicit and Explicit code nuggets with Razor
Posted
over 3 years ago
by
Anonymous
This is another in a series of posts I’m doing that cover some of the new ASP.NET MVC 3 features: New @model keyword in Razor (Oct 19th) Layouts with Razor (Oct 22nd) Server-Side Comments with Razor (Nov 12th) Razor’s @: and <text> syntax (Dec 15th) Implicit and Explicit code nuggets with Razor (today) In today’s post I’m going to discuss how Razor enables you to both implicitly and explicitly define code nuggets within your view templates, and walkthrough some code examples of each of them...
Windows Workflow Community Blogs via Syndication
WCF and AppFabric Auto-Start
Posted
over 3 years ago
by
Anonymous
Auto-start is a really cool feature of Windows Server AppFabric. Recently I was asked about how you can do some kind of process initialization in your code with Auto-start (which the documentation implies that you can do). This led to a discussion with a number of questions that we want to address What does Auto-start really do? How much faster is the first call to my service if I use Auto-start? How can I write code that is called when the service is auto-started? endpoint.tv - WCF and AppFabric...
Windows Workflow Community Blogs via Syndication
Implementation Using Parallel & ParallelForEach
Posted
over 3 years ago
by
Anonymous
Implementation using Parallel & ParallelForEach The Parallel and ParallelForEach activities can be used to implement the Simple Merge Pattern by configuring the Completion Condition such that it evaluates to True whenever the first child branch completes. Parallel The following example...
Windows Workflow Community Blogs via Syndication
New WF4 Caching Activities for Windows Server AppFabric
Posted
over 3 years ago
by
Anonymous
I’m happy to announce that we have just posted a “Labs” release on our http://wf.codeplex.com site with some new Caching Activities . These activities work with Windows Server AppFabric Caching making it possible for you to use the cache directly from your workflow In this example I’m implementing the “Cache Aside” pattern where I first try to get the value from the cache and then if I can’t find it I get the value from a repository of some kind and then...
Windows Workflow Community Blogs via Syndication
WCF AppFabric Caching Caching Sample Behavior
Posted
over 3 years ago
by
Anonymous
On Thanksgiving day while I was running in the snow I had an idea – what if you could create an Operation Behavior that would allow WCF to cache the result of a service call in Windows Server AppFabric Cache ? Download WCF AppFabric Caching Caching Sample Behavior So I created a sample application that does this by implementing an attribute that implements IOperationBehavior and IOperationInvoker along with a Service Behavior that supports AppFabric Caching. I wanted to make this work with...
Windows Workflow Community Blogs via Syndication
Hybrid On-Premise and Azure Cloud Solutions blog entry
Posted
over 3 years ago
by
Anonymous
If you're interested in the problem space of building hybrid solutions that leverage both Azure AppFabric and Windows Server AppFabric, go check out this really awesome blog entry I was honored to help author: Hybrid Cloud Solutions With Windows Azure...
Windows Workflow Community Blogs via Syndication
Simple Merge Pattern
Posted
over 3 years ago
by
Anonymous
Simple Merge Pattern The Simple Merge Pattern represents the case where two or more branches come together to execute a single, shared branch of common logic following independent branches. The key to the simple merge is the lack of synchronization...
Windows Workflow Community Blogs via Syndication
Implementation Using State Machine
Posted
over 3 years ago
by
Anonymous
Implementation Using State Machine The State Machine's Transitions define a very natural way to implement the Simple Merge Pattern, because multiple states can transition back into a single state. The figure below shows the payment processing scenario, which evaluates the...
Windows Workflow Community Blogs via Syndication
WCF Web APIs Roundup - Volume 1
Posted
over 3 years ago
by
Anonymous
A little over a month ago we launched our new WCF Web Apis on Codeplex . Since then a bunch of folks in the community (and some internal folks) have been posting about their own explorations / thoughts of the new bits. it’s great to see the work that they are doing! I am going to start aggregating these and periodically (I am not committing to a cadence but am aiming for monthly) post pointers to whatever I find. Appreciate any suggestions to the format. Blogs On WCF Web Apis Microsoft WCF gets serious...
Windows Workflow Community Blogs via Syndication
Workflow Studio Now Available!
Posted
over 3 years ago
by
Anonymous
If you're interested in building a custom, stand-alone application for designing Workflows and Workflow Services with .NET 4.0, you should check out the reference application we built that is now available from the MSDN Code Gallery. It's a feature rich...
Windows Workflow Community Blogs via Syndication
New Release Microsoft.Activities.UnitTesting 1.71
Posted
over 3 years ago
by
Anonymous
Just posted a new release of Microsoft.Activities.UnitTesting This release incorporates the Task Parallel Library to greatly simplify test code. Episodes You can now create a task that will run an episode of work in the workflow. An episode is simply a pulse of work that the workflow runs. For example an episode might look like the following Thread Action host Run the workflow host Wait for idle Workflow Activity 1 Workflow Activity 2 (creates a bookmark) Workflow Invoke Idle delegate - host sets...
Windows Workflow Community Blogs via Syndication
Slightly lighter than HashSet<WeakReference> – HashSet<GCHandle> (an experiment)
Posted
over 3 years ago
by
Anonymous
In playing around with the possible solutions or improvements to [previous post:] the heaviness of finalizable WeakReference objects, an obvious thing to do was replace WeakReference objects with using GCHandle structs. Here’s a test program which adds many WeakReferences to a HashSet. (Note, HashSet uses arrays as the underlying storage.) The WeakReferences will point at some temporary objects which soon become collectable. The results are that in a minute or two we can create up to about 12 million...
Windows Workflow Community Blogs via Syndication
WeakReference collections and the heavy WeakReference class
Posted
over 3 years ago
by
Anonymous
Briefly diverging from regular posts: here’s something really fun. As far as I know, prior to 4.0, .Net has had, two built in ways to do weak object references. 1) WeakHandle 2) GCHandle, which is what WeakHandle uses under the covers. If you have ever tried to use WeakHandle in a collection, e.g. attempt to maintain a ‘weak set’ or a ‘weak list’ as you might want in a weak event notification scheme, and then tried to stress test your solution for scalability, you find some slightly interesting problems...
Page 1 of 1 (17 items)