| |
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.
|
15 Articles match "Framework","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). Create robust code using unit testing frameworks and mocking Simplify your service deployment with zero config services with WCF 4.0. Workflow 4, ASP.NET MVC and Silverlight. What does Entity Framework do for me and how can I use it effectively? Day 4 Windows Workflow Foundation 4.0 couldn't? Register now. DevelopMentor Courses - Tuesday, March 1, 2011 Devweek 2013 Reactive Framework. Workflow 4.5. Thanks to everyone who attended my sessions at Devweek 2013 – I had a lot of fun delivering them. It was also great to catch up with old friends and make a few new ones. As promised I have uploaded all of my slides and demos to the cloud and they can be downloaded here. WCF Preconference Workshop. Living with the GC. WCF 4.5 remember you’ll need to be running Windows 8 for the WebSockets demos). What’s new in Unit Testing in VS 2012 (remember that Fakes is only in VS Ultimate SKU DevelopMentor Courses - Saturday, March 9, 2013 Spring 3.0 and the Enterprise Training The Spring framework is an application framework that provides a lightweight container that supports the creation of simple-to-complex components in a non-invasive fashion. The framework's structure supports the layering of functionality such as persistence, transactions, view-oriented frameworks, and enterprise systems and capabilities. Spring's Aspect-Oriented Programming (AOP) framework enables developers to declaratively apply common features and capabilities across data types in a transparent fashion. Students who attend Spring 3.0 DevelopMentor Courses - Tuesday, March 1, 2011 |
43 Articles match "Framework","Workflow"
| The Latest from DevelopMentor | MORE | | Devweek 2013 Reactive Framework. Workflow 4.5. Thanks to everyone who attended my sessions at Devweek 2013 – I had a lot of fun delivering them. It was also great to catch up with old friends and make a few new ones. As promised I have uploaded all of my slides and demos to the cloud and they can be downloaded here. WCF Preconference Workshop. Living with the GC. WCF 4.5 remember you’ll need to be running Windows 8 for the WebSockets demos). What’s new in Unit Testing in VS 2012 (remember that Fakes is only in VS Ultimate SKU DevelopMentor Courses - Saturday, March 9, 2013 Use NuGet package restore to simplify code sharing First, if you’re unfamiliar with NuGet, it’s basically “add reference” to external software projects (typically open source ones such as jQuery, but also for Microsoft ones such as Entity Framework). This whole workflow was introduced for simplifying source code management. Here’s a quick post on how and why you want to consider using NuGet package restore. You definitely need to check out David Ebbo’s post introducing it. NuGet will change the way you develop. Now when using NuGet it maintains a packages folder near your solution file. Michael C. Kennedy's Weblog - Monday, December 17, 2012 Windows Workflow Foundation 3 Types Marked Obsolete in.NET 4.5 So far both workflow stacks have coexisted in.NET 4 and there has been no official statement about the future of the older WF3 stack. The workflow team at Microsoft has just announced that they are marking the WF3 stack as deprecated with the next release of the.NET framework,NET 4.5. TheProblemSolver DotNetEvents.NET Workflow WF4 dotnetmagPeople have been wondering for a while what the future of WF3 was since the release of WF4. That has just changed! Warning BC40000: X is obsolete: ‘WF 3 types are deprecated. Please use WF 4 instead.’” Enjoy! The Problem Solver - Thursday, February 9, 2012 | -
| The Best from DevelopMentor | MORE | - Rehosting the Workflow Designer in WF4
Note: This blog post is written using the.NET framework 4.0 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. Validating the workflow. Running the workflow. Sweet. The Problem Solver - Wednesday, December 23, 2009 - Flowing transaction into a workflow using WF4
Note: This blog post is written using the.NET framework 4.0 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 else. {. Enjoy! The Problem Solver - Monday, December 21, 2009 - Significant Advances in Unit Testing Windows Workflow
This post describes a unit testing library for testing Windows Workflow Foundations.It is not a framework like HarnessIt, NUnit, or MsTest. Rather it’s a library that can be used in conjunction with any of these testing frameworks. Download the library with sample … Continue reading → Agile.NET agile Articles Visual Studio WF Workflow Michael C. Kennedy's Weblog - Sunday, January 18, 2009 - Using WF4 bookmarks with IWorkflowInstanceExtension
Note: This blog post is written using the.NET framework 4.0 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. Tags: NET Workflow WCF WF4 VS2010 Beta2 return null ; }. Enjoy! The Problem Solver - Wednesday, January 27, 2010 - Bookmarked Activities in WF4
Note: This blog post is written using the.NET framework 4.0 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. Running the workflow and resuming a bookmark is easy when using a WorkflowApplication as seen below. Tags: NET Workflow WF4 VS2010 Beta2 bookmark is basically a named pause point in an activity. public class MyBookmarkedActivity : NativeActivity. {. Enjoy! The Problem Solver - Tuesday, January 26, 2010 - Significant Advances in Unit Testing Windows Workflow
This post describes a unit testing library for testing Windows Workflow Foundations. It is not a framework like HarnessIt , NUnit , or MsTest. Rather it's a library that can be used in conjunction with any of these testing frameworks. First a Little History: Last September I posted this teaser entitled Unit Testing Coming to a Workflow Near You. In that previous post, I highlighted what I could determine to be the current state-of-the-art with regard to unit testing workflows, circa September 2008. TDD and Windows Workflow Foundation by Ron Jacobs. Michael C. Kennedy's Weblog - Sunday, January 18, 2009 - Workflow 4 and soap faults
Image by ponChiang via Flickr Note: This blog post is written using the.NET framework 4.0 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. Enjoy! The Problem Solver - Wednesday, March 24, 2010 %>
| | |