Resources  
  • Remoting in .NETSep 26, 2003. .NET Remoting enables distributed communication across app domains using various protocols, serialization formats, and object creation modes. Server-side, it creates a service exposing methods, accessible remotely. Client-side, it accesses these services through proxies, facilitating remote method invocation.
  • .NET Remoting: The Simple ApproachMar 26, 2002. .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 Web services.