|
|
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
10 Articles match "Windows","Windows Workflow Foundation"
|
Related DevelopMentor Courses
|
MORE
|
|
Essential Windows Workflow Foundation
Learn why Windows WF was created and discover how to support human and system activities by organizing them into workflows. Learn how to host Windows WF, create custom activities for Windows WF, and develop workflows in Windows WF. You'll get answers to these questions: How can I use workflows to map out processes? What is the best way to host a workflow? What are the best practices for customizing my workflows? How can I create extremely rich workflow authoring experiences? Build a solid foundation for more advanced topics.
DevelopMentor Courses
- Friday, June 12, 2009
Essential Windows Workflow Foundation 4 - WF4 Training
Gain understanding of the strengths and weaknesses of Windows Workflow Foundation 4. Understand how workflow activities work and what their role is. Discover what part of your application is best suited to use Windows Workflow Foundation and why. Learn how you can empower your end users to create new, or change existing, workflows to adapt to the changing business environment. Understand what the best way is to host your workflows in the various execution environments.NET is found. Workflows The basic structure of a workflow.
DevelopMentor Courses
- Thursday, June 3, 2010
Essential Windows Workflow Foundation 4 - WF4
Gain understanding of the strengths and weaknesses of Windows Workflow Foundation 4. Understand how workflow activities work and what their role is. Discover what part of your application is best suited to use Windows Workflow Foundation and why. Learn how you can empower your end users to create new, or change existing, workflows to adapt to the changing business environment. Understand what the best way is to host your workflows in the various execution environments.NET is found. Workflows The basic structure of a workflow.
DevelopMentor Courses
- Tuesday, November 17, 2009
|
53 Articles match "Windows","Windows Workflow Foundation"
|
The Latest from DevelopMentor
|
MORE
|
|
Converting a C# workflow into XAML
A interesting question that came up last week was how to convert workflows defined in C# to XAML. co worker of one of the attendees of the Essential Windows Workflow Foundation 4 course had been experiencing a lot of problems with the workflow designer and decided to create their workflows in C# instead of using the designer to generate XAML. While these workflows run just fine you do lose the visual aspect of the designer, one of the benefits of workflow in the first place. Take the following workflow defined in C#. Enjoy!
The Problem Solver
- Saturday, August 28, 2010
Software Architect Conference 2010
m going to be delivering two sessions on Windows Workflow Foundation 4.0: the first explains the basic architecture and looks at using workflow as a Visual Scripting environment to empower business users. The second looks at building big systems with workflow concentrating on the WCF integration features. I’m speaking at Software Architect 2010 in October. In addition to that I’ll be delivering two all-day workshops with Andy Clymer : Building Applications the.NET 4.0 Way and Moving to the Parallel Mindset with.NET 4.0.
.NET Meanderings
- Tuesday, June 8, 2010
Hiding the XAMLX from a workflow service
In Windows Workflow Foundation 4 it’s easy to create a workflow and expose it as a WCF service. But one thing is that it exposes a XAMLX endpoint to each client can see the service actually implemented as a workflow service instead of a regular service. One way to hide that is to use a regular SVC file as the implementation and point that to a workflow using the WorkflowServiceHostFactory. First we need to use a regular workflow instead of a workflow service. Tags: NET Workflow WCF WF4 VS2010 data]. data.ToString()]. Enjoy!
The Problem Solver
- Tuesday, May 18, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
Getting started with Windows Workflow Foundation 4
As you may have heard Windows Workflow Foundation 4 is not an upgrade from Windows Workflow Foundation 3 (or 3.5). In fact Windows Workflow Foundation 3 was the first version and 3.5 That might be a bit surprising, after all we still have activities and a workflow runtime right? Creating workflows is done by creating a WorkflowInstance object. This object is raises events for that workflow and only for that specific workflow. For now just select the “Sequential Workflow Console Application”.
The Problem Solver
- Monday, June 22, 2009
-
Windows Workflow Foundation 4 and persistence
The persistence class out of the box is called SqlWorkflowInstanceStore and as the name suggests it saves workflow data in either SQL Server 2005 or 2008. We can attach it to either a WorkflowApplication or a WorkflowServiceHost and persist workflows when we want. This can be used to run only short lived workflows and doesn’t support persistence. var instanceStore = new SqlWorkflowInstanceStore(connStr); WorkflowApplication app = new WorkflowApplication(workflow); app.InstanceStore = instanceStore; app.Run(); Okay its a little more involved then that. Enjoy!
The Problem Solver
- Thursday, November 19, 2009
-
The new Windows Workflow Foundation 4 runtime
With WF3 there was a central workflow runtime environment called the WorkflowRuntime and used to manage the lifetime of workflow instances. In WF4 this central class no longer exists and we manage individual workflows. It basically runs a workflow and prints a message when done: static void Main( string [] args). {. Console.WriteLine( "The workflow has completed." Console.WriteLine( "The workflow has completed." quot; ); }; myInstance.Run(); Console.WriteLine( "Waiting for the workflow to complete." Nice right!
The Problem Solver
- Tuesday, June 23, 2009
-
Activity correlation in Windows Workflow Foundation 4
There are two types of correlation to think about in Windows Workflow Foundation: Message correlation Basically sending multiple requests to the same workflow. However sometimes we might need to do so ourselves because we create a workflow in a different way, like using regular code. How much varies and depends on both the workflow and the hosting environment we use. The obvious one is using the WorkflowApplication or WorkflowInvoker to run our workflows. Tags: NET Workflow WCF WF4 VS2010 Think about the Send and ReceiveReply activities.
The Problem Solver
- Wednesday, December 2, 2009
-
Passing data into a Windows Workflow Foundation 4 workflow
Passing parameters into a workflow is similar in WF4 as it was in WF3. In both case a Dictionary is passed in when creating the workflow instance object. basically on the outside you have to create a dictionary with as key something inside of the workflow. keep in mind that workflows tend to be complex and long running things not very well suited to unit testing. Starting a workflow with a parameter: Shared Sub Main(). To allows us to pass data into a workflow, or get something out, we need to use an Argument. No compile time checking. myInstance.Run().
The Problem Solver
- Tuesday, June 30, 2009
-
Data and Windows Workflow Foundation 4
One thing that has completely changed in Windows Workflow Foundation is the way we work with data in a workflow. Dependency properties left the way data was stored to be handled by the workflow runtime but in our program we could use them just like any other property. The actual data is stored somewhere inside of the workflow using a LocationEnvironment. To store some data inside of your workflow we need to add a Variable to the workflow or one of the nested activities. Creating the workflow using code. In WF 4 this has all changed!
The Problem Solver
- Monday, July 20, 2009
-
Using Windows Workflow Foundation 4 Receive from an non WF client
In a previous blog post I described how to use the WorkflowServiceHost and host a workflow with a Receive activity that waits for WCF messages. However a lot of clients out there are not going to be workflows but “regular” code that calls into out workflow. In our workflow the operation is named “Operation1” and our service contact name was “MyService” with the default namespace of “ [link] ”. Using these WCF definitions creating a simple console app that calls the workflow is a breeze. Tags: NET NetFx3 Workflow WCF WF4 VS2010 interface MyService. {.
The Problem Solver
- Wednesday, August 19, 2009
|
|
|