Building a Basic .NET Remoting Application

Building an application that uses .NET remoting to communicate across application domain boundaries is very straightforward. You must have an implementation of a remotable type, a listening or host application domain, a client or calling application domain, and you must configure the remoting system in each application domain to use remote activation for the remotable type. This process applies no matter how complex your remoting scenario becomes.

In This Section

  • Configuration
    Describes the information .NET remoting system needs to make remote calls work.
  • Remoting Examples
    Provides several complete sample applications that use different elements of the remoting infrastructure.