Click here to Skip to main content
15,878,959 members
Articles / Programming Languages / C#

Using the Remoting Callbacks in .Net Applications.

Rate me:
Please Sign up or sign in to vote.
3.45/5 (18 votes)
1 Dec 200111 min read 235K   2.9K   128  
This article describes how to implement an asynchronous remoting callbacks from different remote objects such as .Net Service (COM+), Web Service and classic .Net object using the C# language.
<configuration>
  <system.runtime.remoting>
    <application name="RemoteTest">
      <service>
        <wellknown mode="SingleCall" type="RKiss.RemoteObjectA.RmObjectA, RemoteObjectA" objectUri="ObjectA"  />
      </service>
      <service>
        <wellknown mode="SingleCall" type="RKiss.RemoteObjectX.RmObjectX, RemoteObjectX" objectUri="ObjectX"  />
      </service>
      <channels>
        <channel type="System.Runtime.Remoting.Channels.Tcp.TcpChannel, System.Runtime.Remoting" port="12345" />
      </channels>
    </application>
  </system.runtime.remoting>
</configuration>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior)
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions