|
|
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.
|
16 Articles match "Visual Studio","Workflow"
|
Related DevelopMentor Courses
|
MORE
|
|
Building Better Applications with Visual Studio Team Foundation Server 2010
Discover how Visual Studio enables you to enforce best practices for software development. The course uses the latest version of Team Foundation Server and Visual Studio 2010. How do the Visual Studio visualization tools help with source control? This module also presents an introduction to project management with Microsoft's Visual Studio Team System. TFS has a source control management system, entirely separate from Visual Source Safe (Microsoft's previous source control offering). How can I develop and manage tests?
DevelopMentor Courses
- Monday, June 28, 2010
Building Better Applications with Visual Studio Team Foundation Server - TFS 2010
Discover how Visual Studio enables you to enforce best practices for software development. The course uses the latest version of Team Foundation Server and Visual Studio 2010. How do the Visual Studio visualization tools help with source control? This module also presents an introduction to project management with Microsoft's Visual Studio Team System. TFS has a source control management system, entirely separate from Visual Source Safe (Microsoft's previous source control offering). How can I develop and manage tests?
DevelopMentor Courses
- Monday, July 12, 2010
Mastering Development with Microsoft Office SharePoint Server (MOSS)
In this intensive 5-day course, developers will build on their fundamental knowledge of the WSS architecture and learn how to take advantage of the comprehensive content management, workflow, forms, business intelligence, and reporting services provided by this integrated suite of tools. Day 1 SharePoint Overview What is SharePoint and how can it help your business? Application Pages SharePoint customizations Customize before you code!
DevelopMentor Courses
- Friday, June 12, 2009
|
19 Articles match "Visual Studio","Workflow"
|
The Latest 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
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
WCF Data Services versus WCF Soap Services
Only SOAP Services (leaving Workflow Services aside for the moment) can be used with any format and transport protocol. in Visual Studio 2010. Someone recently asked me this question: When a company that has been using 2 tiers wants to move to n-tier, what are the considerations for choosing WCF and STEs [or Trackable DTOs] vs. WCF Data Services? m going to steal an image from the.NET Endpoint blog , because it shows how each programming model rests on top of the infrastructure provided by WCF. Whether that’s good or bad depends entirely on your point of view. Sweet.
Tony and Zuzana's World
- Tuesday, April 13, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
Six Things That’ll Surprise You About.NET 4.0
as well as Visual Studio 2010. 1 Visual Studio 2010. for the very first time an true open source will become and integral and supported part of Visual Studio and.NET? that Windows Workflow 4 has been completely rewritten for.NET 4.0. WF 4 has a nice GUI workflow building designer that is part of the VS 2010 tools and moreover that designer is rehostable in your own Windows Forms or WPF applications. This would give your application essentially a visual programmability. Visual Studio 2010 Multi-monitor Support. 5 WPF.
Michael C. Kennedy's Weblog
- Wednesday, November 11, 2009
-
Unit Testing Coming to a Workflow Near You
[Update: See the follow up post "Significant Advances in Unit Testing Windows Workflow" ]. If you've been working with Windows Workflow, you'll find it has some cool features for orchestration, long running operations, state machines, etc. In fact the architecture that makes Windows Workflow powerful (strict separation of workflow, activities, and the host for example) really gets in the way of unit tests. There has been some work done on unit testing Windows Workflows. Here's some links: Unit Testing Activities with Windows Workflow Foundation by Ron Jacobs.
Michael C. Kennedy's Weblog
- Tuesday, September 30, 2008
-
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
-
NET 3.5 Brings Breaking Changes to ThreadPool
To make this more real for everyone, this applies to you if you use any of the following: ASP.NET, WCF,NET Remoting, Delegate.BeginInvoke, SqlCommand.BeginExecute*, Windows Workflow , and more. Tags: DevelopMentor Visual Studio Holy smokes! thought we had figured out something significant when I posted.NET 3.5 Brings Major (Undocumented) Changes to ThreadPool where we discovered that the.NET 3.5 ThreadPool changed the allocation algorithm for adding threads from linear to logarithmic. This is bigger. Recently updated see note below ]. Here's the scenario. NET 2.0) NET 2.0
Michael C. Kennedy's Weblog
- Monday, February 25, 2008
-
Getting started with Windows Workflow Foundation 4
As you may have heard Windows Workflow Foundation 4 is not an upgrade from Windows Workflow Foundation 3 (or 3.5). In fact Windows Workflow Foundation 3 was the first version and 3.5 That might be a bit surprising, after all we still have activities and a workflow runtime right? Creating workflows is done by creating a WorkflowInstance object. This object is raises events for that workflow and only for that specific workflow. When we start Visual Studio 2010 and select File/New/Project we get the new project tab. Yes there is.
The Problem Solver
- Monday, June 22, 2009
-
MSDN Magainze: Web Apps That Support Long-Running Operations
I'm pleased to announce that MSDN Magazine just published my Windows Workflow article entitled. ASP.NET WORKFLOW: Web Apps That Support Long-Running Operations". Tags: Books DevelopMentor Visual Studio hope you find it useful and interesting. All content copyright Michael C. Kennedy. All information, source code, and especially tools are provided as is and on a "use at your own risk" basis.
Michael C. Kennedy's Weblog
- Wednesday, December 24, 2008
-
Significant Advances in Unit Testing Windows Workflow
This post describes a unit testing library for testing Windows Workflow Foundations. 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. Unit Testing Activities with Windows Workflow Foundation by Ron Jacobs. TDD and Windows Workflow Foundation by Ron Jacobs. Unit Testing Workflow Activities by K. You can also just jump to the code. Enjoy!
Michael C. Kennedy's Weblog
- Sunday, January 18, 2009
|
|
|