| |
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 "Windows","Windows Workflow Foundation"
| Related DevelopMentor Courses | MORE | | Service-Orientation Today and Tomorrow Training In Deutsch , klicken Sie hier Based on the ranges of topics below, you will be able to take the first steps in the world of Service-Orientation and Cloud Computing with confidence and above all be prepared for future projects: Service-Orientation Cloud and Cloud Computing Identity Management and Claims-Based Identity Windows Communication Foundation (WCF) Windows Workflow Foundation (WF) Azure Services Platform (with Windows Azure and.NET Services) In Deutsch , klicken Sie hier Are you tired of constantly reading about "crisis" and "restrictions"? DevelopMentor Courses - Tuesday, March 1, 2011 Side by side versioning of workflow services One of the really important new features in Windows Workflow Foundation 4.5 is the capability to version workflows and workflow instances. You get to choose what you want to do, either keep running existing instances with their original workflow definition or upgrade them to the latest workflow definition. In the previous blog post I described how to upgrade existing workflow instances to run with the last version. The basic steps Create your initial workflow definition. Start one or more instances using this workflow definition. The Problem Solver - Thursday, October 11, 2012 Guerrilla.NET (UK) Training Create workflows that can model complex processing using flowchart workflows. Create declarative services using workflow that can be deployed as simple text files Decouple your entity model from the data using Plain Old CLR Objects (POCOs). Develop network services with Windows Communication Foundation Develop cutting-edge UIs with Silverlight 4.0 Workflow 4, ASP.NET MVC and Silverlight. How do I develop network services with Windows Communication Foundation? Day 4 Windows Workflow Foundation 4.0 couldn't? Since.NET 1.0, DevelopMentor Courses - Tuesday, March 1, 2011 |
72 Articles match "Windows","Windows Workflow Foundation"
| The Latest from DevelopMentor | MORE | | Side by side versioning of workflow services One of the really important new features in Windows Workflow Foundation 4.5 is the capability to version workflows and workflow instances. You get to choose what you want to do, either keep running existing instances with their original workflow definition or upgrade them to the latest workflow definition. In the previous blog post I described how to upgrade existing workflow instances to run with the last version. The basic steps Create your initial workflow definition. Start one or more instances using this workflow definition. The Problem Solver - Thursday, October 11, 2012 Side by side versioning of workflow services One of the really important new features in Windows Workflow Foundation 4.5 is the capability to version workflows and workflow instances. You get to choose what you want to do, either keep running existing instances with their original workflow definition or upgrade them to the latest workflow definition. In the previous blog post I described how to upgrade existing workflow instances to run with the last version. The basic steps Create your initial workflow definition. Start one or more instances using this workflow definition. The Problem Solver - Thursday, October 11, 2012 Updating workflow instances using an update map One of the really important new features in Windows Workflow Foundation 4.5 is the capability to version workflows and workflow instances. You get to choose what you want to do, either keep running existing instances with their original workflow definition or upgrade them to the latest workflow definition. If you find a bug in your workflow definition the update scenario is probably what you are looking for. In this blog post I am going to explain how to do an upgrade of an existing workflow instance. 5: Version = new Version(1, 0). The Problem Solver - Wednesday, October 10, 2012 | -
| The Best from DevelopMentor | MORE | - 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 - 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 - What's New in Windows Workflow Foundation in.NET 4.5 (part 1)
Search Searching through workflows is another big one. With small workflows it is quite easy to see where a variable is used but when workflows get bigger this becomes an increasingly hard problem. With WF4 I typically solve this by opening the workflow XAML in a text editor and searching the raw XML. The new search capability will let you search through a workflow in the designer, as you really should, just as any other Visual Studio artifact. www.dotnetevents.nl.NET Workflow WF4 Futures dotnetmagfeatures where announced. Auto surround with a Sequence. The Problem Solver - Tuesday, September 27, 2011 - Windows Workflow Foundation futures and database access
Ron Jacobs showed a number of really cool new workflow features we can be expecting in the next version of Windows Workflow Foundation during the last PDC in Redmond and Tech-Ed Europe in Berlin. One of the new features he demonstrated where the activities we can use to load data from a SQL server database into our workflow. Why don’t I like the new database activities With the new ExecuteSqlQuery we are back to typing in a literal SQL string to be executed on the server and the related connection string directly into a workflow. The Problem Solver - Saturday, November 20, 2010 - 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 - What's New in Windows Workflow Foundation in.NET 4.5 (part 3)
This is the 3rd post about what is new with Windows Workflow Foundation in.NET 4.5 This 3rd post is about one of the biggest missing pieces which is versioning workflows. To understand why this is so painful at the moment it is important to remember that workflow instances often run for a long time. Right not with WF4 you can’t change the definition of a workflow instance that is running even when it is persisted to disk. Doing so will result in any number of weird exceptions when the workflow tries to resume. Enjoy! www.TheProblemSolver.nl The Problem Solver - Tuesday, October 11, 2011 - Workflow parameters in Window Workflow Foundation 4
Creating parameters for a workflow is quite easy to do in WF 4. Just open the arguments tab in the workflow and add each input or output parameter you need and the required type. Now in WF 3 passing data to a workflow was done using a Dictionary to specify the input. Every time you create an in or out argument the workflow will also get a corresponding public property. Tags: Workflow WF4 VS2010 This is very flexible but also very brittle as it is all magic of key names matching property names. This approach still works as the following code demonstrates. The Problem Solver - Friday, October 23, 2009 %>
| | |