.NET news » Search results

Search results for query "remoting" (10):

.NET Cross AppDomain Communication
This article demonstrates a quick and easy-to-use implementation for cross-AppDomain communication in .NET by leveraging Windows native messaging. The XDMessaging library is based on code developed to aid rapid development for a recent Vista project that required a lot of cross-AppDomain communication in a locked-down environment. It proved to be extremely useful in a number of scenarios where .NET Remoting would have been impractical, if not impossible, and actually solved more problems than I could have imagined due to its simplicity. The library is intended to send messages between multiple applications in a same-box scenario. For example, a task-tray application might want to communicate with or monitor a separate desktop application. The library does not implement cross-domain communication across a network, for which case .NET Remoting is sufficient.
2008-06-04 06:25:00   Source: .NET Cross AppDomain Communication   Tags: Other
Test Driven Prototyping - Learning About .NET Remoting
Use test driven development processes to determine the issues affecting application architecture and design with regards to .NET remoting.
2007-04-07 17:03:00   Source: Test Driven Prototyping - Learning About .NET Remoting   Tags: Remoting
Simple sample for .NET Remoting
This article is for beginners
2007-02-14 07:41:00   Source: Simple sample for .NET Remoting   Tags: Remoting
Remoting Event (Simple and efficient for enterprise solutions)
This article represents Remoting Event problems and solves all of them.
2006-08-06 05:47:00   Source: Remoting Event (Simple and efficient for enterprise...   Tags: Remoting
The Baker's Dozen: 13 Productivity Tips for Remoting in Visual Studio 2005
Remoting is a powerful technology for implementing distributed applications. Interfaces make it possible to access external code in a strongly-typed manner. Generics in Visual Studio 2005 simplify the process even further.
2006-07-25 00:35:39   Source: The Baker's Dozen: 13 Productivity Tips for Remoting in...   Tags: Remoting
Two-way Remoting with Callbacks and Events, Explained
A demonstration of how separate applications on different machines are able to effectively communicate with one another.
2006-07-19 13:46:00   Source: Two-way Remoting with Callbacks and Events, Explained   Tags: Remoting
13 Productivity Tips for Remoting in Visual Studio 2005
13 Productivity Tips for Remoting in Visual Studio 2005

Remoting is an ideal approach for executing code that resides on another domain: remoting interfaces allow developers to program against a strongly-typed model of code outside the current project. Building a remoting solution requires more code and may initially appear more complicated than Web services, so this article de-mystifies remoting by presenting a walk-through of a simple remoting project.

2006-04-20 19:00:00   Source: 13 Productivity Tips for Remoting in Visual Studio 2005   Tags: Remoting
Bringing DCOM remoting functionality to Windows CE and .NET CF2.0
This article shows how to use DCOM on Windows CE 5.0. We will add full DCOM rich error information, and implement a DCOM interface between a Windows XP .NET 2.0 client and Windows CE DCOM server. With this code, it is possible to code .NET remoting alike functionality through DCOM interop.
2006-04-17 16:00:00   Source: Bringing DCOM remoting functionality to Windows CE and...   Tags: Mobile
.NET Remoting and Cross Domain Marshalling
An article about how to marshal a remote client request from one AppDomain to another.
2006-04-10 10:31:00   Source: .NET Remoting and Cross Domain Marshalling   Tags: Remoting
A Simple Introduction to .NET Remoting
.NET remoting allows the development of distriubuted applications. It allows applications to use objects contained in other processes. We wil quickly look at the basics on how to set up a simple .NET remoting system.
2005-06-15 10:19:00   Source: A Simple Introduction to .NET Remoting   Tags: Internet Remoting