| |
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 "Configuration","Workflow"
| Related DevelopMentor Courses | MORE | | Spring 3.0 and the Enterprise Training Students who attend Spring 3.0 and the Enterprise will leave the course armed with the required skills to design and implement Spring applications that effectively and transparently use various enterprise systems, tools, and technologies. This course provides coverage of the concepts and practices for interacting between Spring and relational databases, security components, distributed resources, web services, messaging, EJB3, and other components. Processes and best practices are discussed and illustrated through both discussions and group activities. DevelopMentor Courses - Tuesday, March 1, 2011 Mark Blomsma: NuGet, Files and Source Control Default NuGet Workflow. NuGet adds a packages.config file to your project and uses this to keep track of which packages and versions are installed in the project: When you now check into source control all configuration information as well as all the downloaded packages are preserved and managed in source control. Restore During Build Workflow. There are three differences with the default NuGet workflow: A.nuget folder is added to the solution, which contains NuGet.exe, a config file and a build file. How does NuGet play with regards to source control? DevelopMentor Courses - Monday, January 21, 2013 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 like Windows Server AppFabric. This set of activities is called a workflow. DevelopMentor Courses - Wednesday, February 22, 2012 |
34 Articles match "Configuration","Workflow"
| The Latest from DevelopMentor | MORE | | Mark Blomsma: NuGet, Files and Source Control Default NuGet Workflow. NuGet adds a packages.config file to your project and uses this to keep track of which packages and versions are installed in the project: When you now check into source control all configuration information as well as all the downloaded packages are preserved and managed in source control. Restore During Build Workflow. There are three differences with the default NuGet workflow: A.nuget folder is added to the solution, which contains NuGet.exe, a config file and a build file. How does NuGet play with regards to source control? DevelopMentor Courses - Monday, January 21, 2013 Scheduling child activities with input parameters The problem is that activities are normally just scheduled and their inputs and outputs are configured using Visual Basic expressions. The problem however is that input arguments want to work with data the workflow way and won’t let you pass the dictionary straight to the child activity. also made this a private property and used metadata.AddImplementationDelegate() to register this with the workflow runtime in order to prevent it from showing up in the produced XAML. www.dotnetevents.nl.NET Workflow WF4 VS2010Sounds simple right? Console.WriteLine(item); }. Enjoy! The Problem Solver - Tuesday, April 5, 2011 Scheduling child activities with input parameters The problem is that activities are normally just scheduled and their inputs and outputs are configured using Visual Basic expressions. The problem however is that input arguments want to work with data the workflow way and won’t let you pass the dictionary straight to the child activity. also made this a private property and used metadata.AddImplementationDelegate() to register this with the workflow runtime in order to prevent it from showing up in the produced XAML. www.dotnetevents.nl.NET Workflow WF4 VS2010Sounds simple right? Console.WriteLine(item); }. Enjoy! The Problem Solver - Tuesday, April 5, 2011 | -
| The Best from DevelopMentor | MORE | - Workflow Receive activity and message correlation
With WF4 it is quite easy to use data that is part of the request message, for example an order identifier, to route multiple WCF messages to the same workflow. It is also possible to have multiple messages that can start a new workflow. In this blog post I am going to show both these concepts in a single workflow. This workflow is going to be able to receive three different messages, AddItem, AddExpensiveItem and Submit. Either AddItem or AddExpensiveItem can start a new workflow while Submit can only be done with an existing workflow. ReferenceID0. The Problem Solver - Wednesday, April 28, 2010 - Flowing transaction into a workflow using WF4
Beta 2 One of the things that wasn’t possible in Windows Workflow Foundation 3 was flowing transaction over a WCF service request into a workflow. Fortunately that is one the problems that Windows Workflow Foundation 4 solves for us. In WF4 we can use the ReceiveAndSendreply template to configure a workflow as a service and accept WCF calls. If we want to use transactions we need to add the TransactedReceiveScope to the workflow. All of this can be done by adding a little extra configuration to the web.config file. else. {. class Program. {. The Problem Solver - Monday, December 21, 2009 - Securing a Workflow Service using Windows Identity Foundation
How about securing a workflow service? As a workflow 4 service is just another WCF service securing it is just as easy as the steps below will demonstrate. To start with I created a small workflow service and a simple client application. Because the STS Dominick Baier has running supports multiple ways the user can authenticate, either username/password or certificate, we still need to fix the configuration a bit. Tags: NET Workflow WCF WF4 VS2010 WIF No security yet and the client works as expected. try. {. catch (Exception ex). {. Console.ReadLine(); }. The Problem Solver - Friday, September 24, 2010 - Versioning long running Workflow Services in WF4, the code
In my previous WF4 post I described the principal of how to version workflow services using the WCF 4 RoutingService. The workflow service with 2 different versions of same workflow. The second version of the workflow has more activities in the tree so it can’t load workflow instances from version 1. Each workflow is hosted in a different XAMLX file and the second was created by copying the first and making the required changes to it. It knows about one existing workflow instance previously created and will create a new one. class Program. {. The Problem Solver - Tuesday, November 16, 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 a IWorkflowInstanceExtension Workflow extensions can be of any type you want, there is no base class or interface requirement. But that also means they are not aware of the workflow runtime environment and can’t do much more that respond to calls from a workflow. One of those, the SetInstance, is passed a wrapper object around the running workflow allowing us do do some more work. return null ; }. The Problem Solver - Wednesday, January 27, 2010 - WF4&WCF and message correlation
This same some more about sending multiple messages to the same workflow, AKA Workflow Correlation. One of the ugly parts of Windows Workflow Foundation 3 was the message correlation part when you used WCF to send multiple messages to the same workflow. This guid was the workflow instance ID but having to use that on the client means the client had to be very aware of the server technology used, something that goes against the principals of WCF. To demonstrate this we first need to expand the workflow so it can receive multiple messages for the same workflow. The Problem Solver - Wednesday, September 2, 2009 - Workflow 4 and soap faults
RC 1 Using the ReceiveAndSendReply activity template and the WorkflowServiceHost it is easy to create a workflow service. Other applications can communicate with the workflow just as if it is a regular WCF service, they never need to know the difference. Most of the configuration is quite straightforward. Select the Receive activity and configure it and do the same with the SendReply activity. Throwing a FaultException When a FaultException is thrown in a workflow service pretty much the expected thing is done. But I want to keep my workflow alive! The Problem Solver - Wednesday, March 24, 2010 %>
| | |