|
|
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.
|
11 Articles match "Activity","Workflow"
|
Related DevelopMentor Courses
|
MORE
|
|
SharePoint for Developers (WSSv3/MOSS2007)
Utilize the WSS object model for building applications in SharePoint Build custom workflow solutions for SharePoint Create custom event handlers Use features and solutions for deploying projects for WSS and MOSS Build standard web parts and web parts utilizing AJAX Handle custom authentication solutions Implement best practices for building solutions with WSS and MOSS Leverage the Business Data Catalog Create custom lists that use custom content types Essential SharePoint for Developers (WSSv3/MOSS2007) covers the critical building blocks for developing solutions for both Windows SharePoint Services
DevelopMentor Courses
- Friday, June 12, 2009
Essential Windows Workflow Foundation
Understand activity objects and how they relate to Windows WF workflows Host Windows WF workflows Organize data flow by using workflow activities Communicate with Windows WF workflows from the outside world Work with the built-in persistence and tracking services that ship with Windows WF Integrate Windows WF with web services Use Windows WF rules to separate business logic from flow control in your applications Create both Sequential as well as State Machine workflow Develop your own custom workflow runtime services Re-host the Workflow Designer in your own applications Essential Windows Workflow
DevelopMentor Courses
- Friday, June 12, 2009
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 Understand what the best way is to host your workflows in the various execution environments .NET NET is found.
DevelopMentor Courses
- Tuesday, November 17, 2009
|
38 Articles match "Activity","Workflow"
|
The Latest from DevelopMentor
|
MORE
|
|
Loading XAML Workflows in WF4
RC 1 Most of the time I used compiled workflows in Windows Workflow Foundation 4. Its nice and easy, you design the workflow, compile it and at runtime there is a .NET NET type you use to create and run workflows. The main drawback is that this approach isn’t very flexible, Note: This blog post is written using the .NET NET framework 4.0
The Problem Solver
- Sunday, March 7, 2010
Creating Rich Composite Activities
post I showed that creating a custom composite activity (one that can have one
or The Retry activity that I showed was fairly simple
and the activity itself can’t manipulate
the then the children cant see it as its seen as purely used for this activities implementation.
How I my last
post or
.NET Meanderings
- Sunday, February 14, 2010
NativeActivity – A Tricky Beast
Windows Workflow Foundation 4.0 custom activities in WF4. Most “business” type custom activities will be built using
a code and there are three options for your base class when writing an activity in code:
You use CodeActivity when you have a simple synchronous activity. I’m writing Essential
Windows with Maurice for DevelopMentor .
One
.NET Meanderings
- Tuesday, February 9, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
TryCatch activity in WF4
I can’t say I am a fan of the way the TryCatch activity is implemented in Windows Workflow Foundation 4. For starters there is a Finally block where you can add some activities you want to execute. In fact you can just use a try/finally and it will work just fine. With WF4 this is not the case though The finally activity will only execute if the try block or one of the catch blocks completes. Sounds nice and very much like the try/catch/finally code construct we have in C# or Visual Basic. Except that it behaves in a subtlety different way.
The Problem Solver
- Thursday, November 26, 2009
-
Flowcharts in Workflow 4 and the Switch activity
Flowcharts are a nice addition to Windows Workflow Foundation 4. They allow for a lot of pretty complex behavior that is hard to do in a sequential workflow. In WF 3 we used to model these complex behaviors as state machine workflows. That worked but they weren't really state machines or event driven and things could get a bit tricky. Enter the No it is just another activity to drop in a workflow. So you are free to combine sequential work with a flowchart in one workflow.
The Problem Solver
- Tuesday, October 27, 2009
-
Rehosting the Workflow Designer in WF4
Beta 2 With Windows Workflow Foundation 3 it was possible to rehost the workflow designer in your own application. But possible is about all there was to say about it as it was pretty hard to do anything beyond the basics. With Windows Workflow Foundation 4 live has become much better on the rehosting front In fact it is possible to create the fully functional and useful workflow editor below in about 200 lines of code. And Note: This blog post is written using the .NET NET framework 4.0
The Problem Solver
- Wednesday, December 23, 2009
-
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 And as WF 4 is a complete rewrite we should approach it as a new product and forget just about everything we already know about WF 3. That might be a bit surprising, after all we still have activities and a workflow runtime right? Well wrong actually! There The version numbers might suggest that the previous version was quite mature but in fact it refers to the version of the .NET
The Problem Solver
- Monday, June 22, 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. To compare the two, this is what a minimal console application looks like in WF3. It basically runs a workflow and prints a message when done: static void Main( string [] args)
{ quot; );
};
WorkflowInstance instance = workflowRuntime.CreateWorkflow( typeof (WorkflowConsoleApplication1.Workflow1));
instance.Start();
Console.WriteLine( "Waiting for the workflow to complete."
The Problem Solver
- Tuesday, June 23, 2009
-
Significant Advances in Unit Testing Windows Workflow
This post describes a unit testing library for testing Windows Workflow Foundations.
It Testing Coming to a Workflow Near You . state-of-the-art with regard to unit testing workflows, circa September 2008.
Testing Activities with Windows Workflow Foundation by
Ron It is not a framework like HarnessIt , NUnit ,
or
Michael C. Kennedy's Weblog
- Sunday, January 18, 2009
-
Creating complex activities in the workflow designer
In Windows Workflow Foundation 4 there are a number of “activities” in the designer that aren’t really activities but activity templates. The most obvious of there are the ReceiveAndSendReply and the SendAndReceiveReply in the Messaging section of the toolbox. If you search for either of these activities you are not going to find them. Their real name is ReceiveAndSendReplyFactory and SendAndReceiveReplyFactory This interface is simple and consists of a single Create function that returns the activity to be added to the workflow. Need to create multiple
The Problem Solver
- Monday, November 30, 2009
|
|
|