| |
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.
|
14 Articles match "Templates","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 Essential Windows Presentation Foundation - WPF Training 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. Data Binding: Collections and Hierarchies In this module, you will continue the data binding exploration by examining how to provide visual information for your business objects through data templates and then how to manage collections of objects on the UI. Use VS.NET 2008 (or 2010) and Expression Blend together to build your user interface. DevelopMentor Courses - Wednesday, February 22, 2012 Essential Silverlight 5 Training How do I use styles and templates to customize the appearance of my application? In this critical module you will learn how to bind data to UI elements; how to bind between UI elements to minimize your coding; how to implement the key interfaces that enable the UI to be updated automatically, such as INotifyPropertyChanged, and how to fully utilize the flexibility afforded by data templates, value converters, fallback values and string conversion. ? Deliver online business applications, multimedia websites and games to Windows, Mac OS and Windows Phone 7. ? DevelopMentor Courses - Wednesday, February 22, 2012 |
13 Articles match "Templates","Workflow"
| The Latest from DevelopMentor | MORE | | Getting Things Done with Backpack and 37Signals Can I have templates for repeated ones? In our GTD in Backpack world, the 8 items ringing the workflow will mostly land in Backpack. When they are repeated, I make a template like the actual list but with the title prefix [template]. Here is the check list I use several times a week to make sure that I don't forget to "process" one of my inboxes, which then feeds the other 8 types of containers ringing the workflow diagram. . [Note: You can download this post as a PDF.]. You'll see why shortly. How should I organize my pages? What about check lists? Michael C. Kennedy's Weblog - Sunday, January 30, 2011 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 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 | -
| 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. Tags: NET Workflow WCF WF4 VS2010 Beta2 Note: This blog post is written using the.NET framework 4.0 else. {. Enjoy! The Problem Solver - Monday, December 21, 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. Their real name is ReceiveAndSendReplyFactory and SendAndReceiveReplyFactory respectively and they aren’t activities but activity templates. So how to create an activity template? This interface is simple and consists of a single Create function that returns the activity to be added to the workflow. Tags: NET Workflow WCF WF4 VS2010 If you search for either of these activities you are not going to find them. Enjoy! The Problem Solver - Monday, November 30, 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. Throwing a FaultException When a FaultException is thrown in a workflow service pretty much the expected thing is done. But with a workflow service there is no service contract class we can add the attribute to. So how do we specify the fault contract with a workflow service? But what about faults? The Problem Solver - Wednesday, March 24, 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. The good thing is that when we use the ReceiveAndSendReply or SendAndReceiveReply templates everything will be done for us and the required activity correlation will be configured automatically. 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 Problem Solver - Wednesday, December 2, 2009 - Activity correlation using a RequestReplyCorrelationInitializer
In my previous post about Windows Workflow Foundation 4 I used the CorrelationScope activity to arrange for the activity correlation between a Send and the related ReceiveReply activities. The default templates use a slightly different approach though and use a RequestReplyCorrelationInitializer. Just for comparison below is the code to create the same workflow with a RequestReplyCorrelationInitializer. Parameters =. {. { "GetDataResult" , new OutArgument (getDataResult)}. }. }. }; var workflow = new Sequence(). {. static Activity CreateWorkflow(). {. The Problem Solver - Thursday, December 3, 2009 - 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 %>
| | |