| |
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.
|
13 Articles match "2010","Workflow"
| Related DevelopMentor Courses | MORE | | 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). You learn a myriad of patterns and best practices, and you get hands-on experience developing applications using Visual Studio 2010. Workflow 4, ASP.NET MVC and Silverlight. Day 4 Windows Workflow Foundation 4.0 Architecture The next version of Windows Workflow Foundation (WF 4.0) couldn't? Register now. DevelopMentor Courses - Tuesday, March 1, 2011 Essential Windows Presentation Foundation - WPF Training Use VS.NET 2008 (or 2010) and Expression Blend together to build your user interface. Designers + Developers: organizing your application using styles In this module we will continue the discussion of integrating designers into the development workflow by examining the support for common property setters through WPF Styles. Integrate your visual designers with your developers to maximize their skills. Properly design your architecture to take advantage of data binding. Use new technologies such as LINQ and XLINQ with WPF. What is MVVM and how do I use it? SP1 and 4.0? to WPF 4.0 DevelopMentor Courses - Wednesday, February 22, 2012 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 |
58 Articles match "2010","Workflow"
| The Latest from DevelopMentor | MORE | | Automatically sending tweets using TweetSharp Because I only needed to use a single client there is no need to implement the complete OAuth workflow to determine the authenticated access token. One of the sites I run for the Dutch.NET community is.NET Events in the Netherlands which lists all sorts of community events for, as the name suggests, Dutch.NET developers. The site has been around for a while but always forced people to either go to the site or use in iCalendar feed so see what is happening. Some time ago I decided that these should also be tweeted so people using Twitter would be notified of upcoming events. else. {. The Problem Solver - Tuesday, December 28, 2010 Automatically sending tweets using TweetSharp Because I only needed to use a single client there is no need to implement the complete OAuth workflow to determine the authenticated access token. One of the sites I run for the Dutch.NET community is.NET Events in the Netherlands which lists all sorts of community events for, as the name suggests, Dutch.NET developers. The site has been around for a while but always forced people to either go to the site or use in iCalendar feed so see what is happening. Some time ago I decided that these should also be tweeted so people using Twitter would be notified of upcoming events. else. {. The Problem Solver - Tuesday, December 28, 2010 Calling Workflow Services without Add Service Reference Sometimes you just don’t want to do an Add Service reference in the client application but still be able to to call a WF4 workflow service. The good thing is that a WF4 workflow service is just another WCF service from the client perspective so almost everything you can do with a regular WCF service you can also do with a workflow service. In these examples I am going to use the default workflow service template just to make it easy to get started. Tags: NET NetFx3 Workflow WF4 VS2010 Adjust the client code depending on your service contract. Enjoy! The Problem Solver - Tuesday, November 23, 2010 | -
| 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 - 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 - Versioning long running Workflow Services in WF4
One of the problems with the current version of Windows Workflow Foundation is how to handle different versions of your workflows. With short running workflows this is no big deal, workflows do whatever they are supposed to do and finish, and you can deploy a newer updated version of your XAMLX files whenever you want. However as soon as we get into long running workflows and the SQL Workflow Instance Store things get quite a bit more complicated. It uses this data to differentiate between different workflow service definition. Unfortunately not. The Problem Solver - Thursday, November 4, 2010 - 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. Tags: NET Workflow WCF WF4 VS2010 WIF The way security is often still handled these days with each application keeping track of their own users is somewhat dated. Some form of Federated security, where a single separate server is responsible for the security of a whole series of applications, is the way to go. try. {. try. {. Enjoy! The Problem Solver - Friday, September 24, 2010 - More Workflow 4 Services and duplex communications
Yesterday I posted a long blog post explaining how to do duplex communications in a Workflow service. Its a long story but the most important points where that workflow services don’t support the same style duplex communication as WCF with the callback channel defined in the ServiceContract but rather something that is called durable duplex where the callback contract is independent and the client has to create a ServiceHost and act as a full-blown WCF service. So we can have our workflow check if a callback address is passed and if not just skip the callback altogether. The Problem Solver - Tuesday, May 4, 2010 - 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. 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 loading or saving a workflow is easy to, all it takes is a Load() and Save() function pointing to a XAML file. One thing that is needed is to register the workflow activity designer metadata. Validating the workflow. null ). {. The Problem Solver - Wednesday, December 23, 2009 - 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 %>
| | |