Click here to Skip to main content
15,884,237 members
Articles / Programming Languages / C#

.NET Remoting – Basic Maneuvers

,
Rate me:
Please Sign up or sign in to vote.
4.46/5 (51 votes)
6 Oct 200313 min read 191.2K   9.9K   126  
A tutorial on .NET Remoting
<configuration>
  <system.runtime.remoting>
    <application name="CRemoteObjClient">
      <client url="tcp://localhost:8086/CRemoteObjServer" displayName="CRemoteObjClient">
        <activated type="nsCRemoteObj.CRemoteObj, CRemoteObj" />
      </client>    
      <channels>
		<channel ref="tcp" displayName="CRemoteObjClient tcp channel" port="6792" />
      </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
Hong Kong Hong Kong
Me too, I'm a developer.

Written By
Web Developer
Hong Kong Hong Kong
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions