|
|
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 "Host","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 existing, workflows 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
|
19 Articles match "Host","Workflow"
|
The Latest from DevelopMentor
|
MORE
|
|
MVVM: Service Locator
the Visual Studio extensibility API, Windows Workflow and a variety of other projects.
The This model allows the host to
decide decide what the concrete implementation should be – for example in the Workflow world,
the So, a console host might add a service for output that prints a
string In this post, we’ll explore the service locator (called ServiceProvider in
the the library) and introduce the specific services included with the MVVM Helper library
(as
Mark's Blog of Random Thoughts
- Wednesday, January 27, 2010
Using WF4 bookmarks with IWorkflowInstanceExtension
Beta 2 In this previous blog post I showed how to create an asynchronous activity using the NativeActivity and CreateBookmark to pause a workflow execution. Using that in a WorkflowApplication was easy but what about WorkflowInvoker or WorkflowServiceHost? So what about using a WorkflowInvoker or a WorkflowServiceHost? Neither the WorkflowInvoker not the WorkflowServiceHost contain a ResumeBookmark function so how do we resume a bookmark using either of those execution hosts? Note: This blog post is written using the .NET NET framework 4.0
The Problem Solver
- Wednesday, January 27, 2010
Bookmarked Activities in WF4
Beta 2 Windows Workflow Foundation 4 introduces the concept of bookmarks to temporarily pause activities. The result is that the workflow runtime doesn’t consider an activity to be finished until all its bookmarks are either resumed or removed. That last statement isn’t completely true though as it is only the case when the optional BookmarkOptions aren’t specified or specified as None. Running the workflow and resuming a bookmark is easy when using a Note: This blog post is written using the .NET NET framework 4.0
The Problem Solver
- Tuesday, January 26, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
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. Both Note: This blog post is written using the .NET NET framework 4.0
The Problem Solver
- Wednesday, December 23, 2009
-
Windows Workflow Foundation 4 and persistence
The whole persistence model has changed quite a but for WF4. 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. It is based on the InstanceStore class to if you prefer some other store all you need to do is subclass the InstanceStore and create your own. So what can we do with the SqlWorkflowInstanceStore? We can attach it to either a WorkflowApplication or a WorkflowServiceHost and persist workflows when we want. Notice I left out the WorkflowInvoker. This can
The Problem Solver
- Thursday, November 19, 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
-
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. This means that an exception that is unhandled which bubbles terminating the workflow up will not cause the finally block to execute unless the host application forces it to do so by returning UnhandledExceptionAction.Cancel from the OnUnhandledException instead of UnhandledExceptionAction.Terminate (the default). Sounds nice and very much like the try/catch/finally code construct we have in C# or Visual Basic.
The Problem Solver
- Thursday, November 26, 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 “ http://tempuri.org ”. I also added a WF4 client that called the service and received a response.
The Problem Solver
- Wednesday, August 19, 2009
-
Combining WCF and WF4
There are several ways to use WCF in combination with Windows Workflow Foundation 4. The two can be combined inside of a XAMLX file as Ron Jacobs describes here . Another option is using the WF4 Receive and SendReply activities and hosting the workflow yourself using a WorkflowServiceHost. When I was trying to get things working using a declarative workflow and the designer Visual Studio 2010 would keep in locking up so all workflows in this example will be coded using C#. This is quite a useful option but, at least at the moment, not quite straightforward.
The Problem Solver
- Wednesday, August 5, 2009
-
What does Windows Workflow Foundation 4 mean for existing workflow developers?
The question of what Windows Workflow Foundation version 4 means for developers currently developing using WF recently came up. In WF 3 there was a choice between state machine and sequential workflows. That said, a number of state machine workflows could very well be done using a flow chart. As far as backward compatibility the story is a bit more complicated. As I mentioned before WF 4 is a complete rewrite and doesn’t use any of the existing WF 3 classes. The design of WF 4 is even quite different from the design of WF 3. So are WF 3 developers completely left
The Problem Solver
- Friday, July 3, 2009
|
|
|