|
|
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 "Asynchronous","Windows"
|
Related DevelopMentor Courses
|
MORE
|
|
.NET Architecture and Design Principles: Building Distributed Applications
Think in terms of layers and tiers Use patterns in your code and across the enterprise Write secure code Use concurrency to build highly available systems Make distributed calls using remoting, web services and Windows Communication Framework Utilize asynchronous communication with message queues Horizontally scale every tier of your system Deploy software across distributed systems Applications that span more than one machine require a deliberate and radically different design approach. .NET Day 2 WCF Windows Communication Foundation is a new library in .NET NET Architecture and Design presents key concepts in distributed systems.
DevelopMentor Courses
- Friday, June 12, 2009
Essential Silverlight 3
Deliver online business applications, multimedia websites, and games to Windows, Mac OS, and Linux clients. It lets you build multimedia websites, casual games, and online versions of line-of-business applications on Windows, MacOS, or Linux using a variety of browsers. Themes and Styles Set free from the constraints of Windows, Web applications tend to exploit graphical richness and brand compatibility. In this course, you learn to: Identify when and where Silverlight should be used Use Expression Blend to design your user interface Use Visual Studio 2008 to build a Silverlight project and manage its code using C# Exploit the layout controls to create compelling user interfaces Incorporate Silverlight content into your existing web sites Build user and custom controls that support templates and styling Use Behaviors, Actions and Triggers to create reusable functionality across applications Integrate animations, special effects, perspective transforms and media to create a professional UI Exploit
DevelopMentor Courses
- Wednesday, June 17, 2009
SharePoint for Developers (WSSv3/MOSS2007)
Utilize the WSS object model for building applications in SharePoint Build custom workflow solutions for SharePoint Create custom event handlers Use features and solutions for deploying projects for WSS and MOSS Build standard web parts and web parts utilizing AJAX Handle custom authentication solutions Implement best practices for building solutions with WSS and MOSS Leverage the Business Data Catalog Create custom lists that use custom content types Essential SharePoint for Developers (WSSv3/MOSS2007) covers the critical building blocks for developing solutions for both Windows SharePoint Services
DevelopMentor Courses
- Friday, June 12, 2009
|
12 Articles match "Asynchronous","Windows"
|
The Latest from DevelopMentor
|
MORE
|
|
NativeActivity – A Tricky Beast
Windows Workflow Foundation 4.0 perform long running asynchronous work. I’m writing Essential
Windows with Maurice for DevelopMentor .
One One of the things that I think is less than obvious is the behavior of NativeActivity.
What What is NativeActivity I hear you ask?
.NET Meanderings
- Tuesday, February 9, 2010
MDN - Augusta Developer Event, 24th of February 2010
Windows Forms vs. Windows Forms vs. Introduction to XAML, Silverlight assemblies, n-tier development, asynchronous behavior,
…
Silverlight + Windows Communication Foundation overview
Chris Time for the first Augusta Developer Event of 2010. Join us for a morning filled with
information
The Blomsma Code
- Tuesday, February 2, 2010
DevWeek on the Horizon
Windows Workflow Foundation 4.0
Tues introduces a new version of Windows Workflow Foundation. workflows, asynchronous processing, sequential and flowchart workflows and how workflow’s
automated I’ve just realised that DevWeek 2010 is on the
horizon. horizon. DevWeek is one of my favourite conferences
.NET Meanderings
- Monday, January 18, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
The new Windows Workflow Foundation 4 runtime
In both WF3 and WF4 running the workflow is done asynchronously so we need to wait, in both cases done using a Console.ReadLine().
With WF3 there was a central workflow runtime environment called the WorkflowRuntime and used to manage the lifetime of workflow instances. In WF4 this central class no longer exists and we manage individual workflows. To compare the two, this is what a minimal console application looks like in WF3.
The Problem Solver
- Tuesday, June 23, 2009
-
Basic asynchronous work in Windows Workflow Foundation 4
The whole asynchronous execution model in WF 4 has changed quite a bit from WF 3. It does nothing useful, it’s only task is to show how to get started with asynchronous work in WF 4. class AsyncWorker : CodeActivity
{
protected override void Execute(CodeActivityContext context)
{
var asyncContext = context.SetupAsyncOperationBlock();
var task = new Task(DoAsyncWork, asyncContext);
task.Start();
}
private static void DoAsyncWork( object state)
The Problem Solver
- Tuesday, July 14, 2009
-
More asynchronous work in Windows Workflow Foundation 4
In my previous post I showed how to use an AsyncOperationBlock to do some basic asynchronous work in WF 4. As I mentioned this was for relatively short lived asynchronous operations as the workflow could not be persisted and unloaded while this asynchronous work was executing. So how about real long running work, the kind you run into with real business application like waiting for an invoice to be paid? With these king of jobs an AsyncOperationBlock will not work because you don’t want to keep the workflow in memory all the time. So what do we need to use here?
The Problem Solver
- Wednesday, July 15, 2009
-
WPF Data Providers
An interesting facet of this provider is that it performs it's work asynchronously
-- you can see this behavior when you load very large XML files. Window Title = " AsyncDataBind " Height = " 300 " Width = " 300 "
xmlns = " http://schemas.microsoft.com/winfx/2006/xaml/presentation "
xmlns:cm = " clr-namespace:System.ComponentModel;assembly=WindowsBase "
xmlns:x = " http://schemas.microsoft.com/winfx/2006/xaml " > >
< XmlDataProvider Source = " largeXmlFile.xml " IsAsynchronous =
Mark's Blog of Random Thoughts
- Wednesday, January 17, 2007
-
WCF Duplex Messaging
message back asynchronously; and there are many others. This is because your client is probably a Rich Client GUI based application (Windows
Forms I am one of the moderators of the MSDN
WCF WCF Forum . One of the main areas of questions on the forum is duplex messaging
–
.NET Meanderings
- Tuesday, June 9, 2009
-
NativeActivity – A Tricky Beast
Windows Workflow Foundation 4.0 perform long running asynchronous work. I’m writing Essential
Windows with Maurice for DevelopMentor .
One One of the things that I think is less than obvious is the behavior of NativeActivity.
What What is NativeActivity I hear you ask?
.NET Meanderings
- Tuesday, February 9, 2010
-
MDN - Augusta Developer Event, 24th of February 2010
Windows Forms vs. Windows Forms vs. Introduction to XAML, Silverlight assemblies, n-tier development, asynchronous behavior,
…
Silverlight + Windows Communication Foundation overview
Chris Time for the first Augusta Developer Event of 2010. Join us for a morning filled with
information
The Blomsma Code
- Tuesday, February 2, 2010
|
|
|