.NET REMOTING .. ( A simple approach )
Source Code : NetRemoting .NET Remoting provides a powerful and high performance way of working with remote objects. Architecturally, .NET Remote objects are a perfect fit for accessing resources...
View ArticleNET REMOTING .. The Interface Approach
Source Code : NetRemoting .NET Remoting provides a powerful and high performance way of working with remote objects. Architecturally, .NET Remote objects are a perfect fit for accessing resources...
View ArticleRemoting in C#
Remoting is a framework built into Common Language Runtime (CLR) in order to provide developers classes to build distributed applications and wide range of network services. Remoting provides various...
View Article.Net Remoting – Part1 Introduction
Application Domains and Proxies .Net Remoting is the .Net framework's solution for making remote procedure calls. That is, function calls across a process boundary. To facilitate this, the notion of...
View Article.Net Remoting – Part2 Object Activation, Lifetime And Configuration
Object Activation Object activation refers to the various ways in which a remote object can be instantiated. We begin with a detailed examination of the possible types of object activation and their...
View Article.Net Remoting – Part3 Remoting Examples
Preliminaries Althought I have not done so, you can copy shared assemblies to the Global Assembly Cache (GAC) which is located in %WINDOWS%\Assembly. Alternatively you can refer to the shared assembly...
View Article.Net Remoting – Part4 A Custom Proxy
RealProxy And TransparentProxy The .Net Remoting Framework uses two proxy objects to acomplish its work of making a remote call from a client object to a remote server object. A RealProxy object and a...
View ArticleHow to Use .Net Remoting Using C#
The information in this article help to: What is .NET Remoting? .NET Remoting Architecture? Howdoes .NET Remoting work? Why .NET Remoting? Advantages over WebServies Advantages over COM/DCOM How to...
View Article.Net Remoting – Long-duration Invocations using C#
Sometimes server needs to perform lengthycalculations in reply to the client's request. If such calls are rareor do not take too much time, it's not a problem. If your solutionshows a tendency to have...
View ArticleA Pinch Over .NET Remoting
Introduction Over a period of time the perception of building applications is changing very rapidly whatever it may be either desktop applications, web applications or distributed applications. Now a...
View Article