Remoting Articles

Using Interfaces In .NET Remoting

  Abstract .NET Remoting allows for a clean seperation between client side code and server side code through the use of interfaces. This allows a developer to distribute generic interfaces to client machines and change the server side code without having to redistribute the code changes back to the clients. In this article, we will [...]

Read more

C# Remoting and Distributed Computing

Abstract Remoting is an infrastructure that allows the developer to use remote objects. Remote objects are objects that are based (or instantiated) outside of the caller’s Application Domain. This example shows you how to use both remote object access mechanisms (pass by value and pass by reference). It also shows you the power of remoting [...]

Read more

Introducing .NET Remoting

Abstract .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 across the network without the overhead posed by SOAP based WebServices. .NET Remoting is easier to use than Java’s RMI, but definately more difficult than creating a WebService. In [...]

Read more

Net DDE to DOT NET Remoting

    Abstract This article travel through time to trace the genesis of Dot Net Remotingright from RPC to RMI till SOAP. Prior Art Sun innovated the concept of RPC (Remote Procedure Call), this was furtherrefined by DEC (Digital Equipment Corp. of the VAX fame. Now it is a partof Compaq), and was called COM [...]

Read more
  • Page 2 of 2
  • <
  • 1
  • 2