Wednesday, April 27, 2011

What is .net remoting?

.Net remoting is replacement of DCOM.
Using .Net remoting you can make remote object calls which lie in different application domains.
As the remote objects run in different process client calling the remote object can not call it
directly. So the client uses A proxy which looks like A real objects.
These method calls are called as “messages”.
Massages are serialized using “formatter ”class and sent to client “channel”.
Client channel communicates with server channel. Server channel uses as formatter to deserialize the massage and sends to the remote object.

No comments:

Post a Comment