|
|
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.
|
28 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 Architecture and Design presents key concepts in distributed systems. Using C# 3.0's
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. Asynchronous Execution User interfaces that rely on a single thread of execution are often slow and clunky. Popup: how to display popup windows
DevelopMentor Courses
- Wednesday, June 17, 2009
SharePoint for Developers (WSSv3/MOSS2007)
Come and learn to build solutions for Windows SharePoint Technologies! fw413 MO Essential Sharepoint for Developers (FW413) Day 1 Architecture We look under the hood to see how Windows SharePoint Services and Microsoft SharePoint Office Server 2007 work. Deployment with the Feature and Solution Framework Windows SharePoint Services v2 provided little in terms of deploying functionality built by developers into the SharePoint environment. synchronous and asynchronous events. The new release of WSS v3 can handle authentication outside of IIS and Windows authentication.
DevelopMentor Courses
- Friday, June 12, 2009
|
12 Articles match "Asynchronous","Windows"
|
The Latest from DevelopMentor
|
MORE
|
|
NativeActivity – A Tricky Beast
I’m writing Essential Windows Workflow Foundation 4.0 This means I want to do fancy things like have child activities or perform long running asynchronous work. with Maurice for DevelopMentor. One of the things that I think is less than obvious is the behavior of NativeActivity. What is NativeActivity I hear you ask? Well there are a number of models for building custom activities in WF4. Most “business” type custom activities will be built using a declarative model in XAML by assembling building blocks graphically. However, what if you are missing a building block? 13: {. 27: {.
.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. Time for the first Augusta Developer Event of 2010. Join us for a morning filled with information about Silverlight. Shawn, Chris and Mark will present a variety of topics and we've planned a group discussion, so make sure you come prepared with questions, examples and your experiences. February 24th, 2010 at 9:00am. What is Silverlight? Shawn Robichaud – 15 min. Mark Blomsma - 30 min.
The Blomsma Code
- Tuesday, February 2, 2010
DevWeek on the Horizon
An Introduction to Windows Workflow Foundation 4.0. introduces a new version of Windows Workflow Foundation. Along the way we will be looking at the new designer, declarative workflows, asynchronous processing, sequential and flowchart workflows and how workflow’s automated persistence works. I’ve just realised that DevWeek 2010 is on the horizon. DevWeek is one of my favourite conferences - lots of varied talks, vendor independence and I get to hang out with lots of friends for the week. This year I’m doing a preconference talk and two sessions: A Day of.NET 4.0.
.NET Meanderings
- Monday, January 18, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
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. The important parts here are: CodeActivityContext.SetupAsyncOperationBlock() This basically tells the runtime that the activity is going to do something asynchronously and that the runtime should not continue with the next activity when the Execute() is finished. If you need the sort of asynchronous work where you might be waiting for day’s on an end user this is not the way to go.
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? Enjoy!
The Problem Solver
- Wednesday, July 15, 2009
-
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. It basically runs a workflow and prints a message when done: static void Main( string [] args). {. Console.WriteLine( "The workflow has completed."
The Problem Solver
- Tuesday, June 23, 2009
-
WCF Duplex Messaging
There are many ways that messages can be exchanged between two parties in a service based system: the client can send messages to the server and never get any back; the client can send a message and wait for a response; the client and service can send eachother messages without any pre-defined pattern; the client can send the service a message but not wait synchronously for a response and then then service can send a message back asynchronously; and there are many others. This is because your client is probably a Rich Client GUI based application (Windows Forms or WPF).
.NET Meanderings
- Tuesday, June 9, 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. lt; Window Title = " AsyncDataBind " Height = " 300 " Width = " 300 ". One of the nifty new features of the WPF platform is the pluggable data providers. It ships with two out of the box: ObjectDataProvider: allows you to execute binding expressions against an object and it's methods. XmlDataProvider: loads an XML data source and makes it available as a binding source. State, Age, Income. xmlns = " [link] ". Until then.
Mark's Blog of Random Thoughts
- Wednesday, January 17, 2007
-
NativeActivity – A Tricky Beast
I’m writing Essential Windows Workflow Foundation 4.0 This means I want to do fancy things like have child activities or perform long running asynchronous work. with Maurice for DevelopMentor. One of the things that I think is less than obvious is the behavior of NativeActivity. What is NativeActivity I hear you ask? Well there are a number of models for building custom activities in WF4. Most “business” type custom activities will be built using a declarative model in XAML by assembling building blocks graphically. However, what if you are missing a building block? 13: {. 27: {.
.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. Time for the first Augusta Developer Event of 2010. Join us for a morning filled with information about Silverlight. Shawn, Chris and Mark will present a variety of topics and we've planned a group discussion, so make sure you come prepared with questions, examples and your experiences. February 24th, 2010 at 9:00am. What is Silverlight? Shawn Robichaud – 15 min. Mark Blomsma - 30 min.
The Blomsma Code
- Tuesday, February 2, 2010
|
|
|