Remoting Example on MSDN site - some help understanding it

A

Andreas Håkansson

In a remoting scenario you have a "host" for your remotable object. This
could be IIS or any other application such a console application or a
windows servicem listening on a pre defined tcp port.

When the client create a new instance of a remote object, the .NET
Framework checks the configuration settings for the application, and
determins how to retreive an instance of the object.

It find the information, and forwards the call to the "host" which then
creates the correct object using the correct activation mode. This is a
simplified description on how the remoting scenario works.

Hope this helps,

//Andreas
 
C

Chris A. R.

Syntax concepts:

The Server is the Listener, because it's the one waiting for the 'query', or
the Request for information. If it wasn't listening, it could never answer.
Once the client makes it's request, the listener (server) will Respond with
the answer.

Chris A.R.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top