Messaging Using Remoting Service (Samples)

latest days I was interested with .net remoting service and events delegation between client and server sides, then I decided to write application that cover event delegation between clients and server and vis versa using .net remoting service, we can use this technique in chatting applications or any other business applications that depend on messaging between client and server.

the first application is simple broadcasting message application, Download Link.

the second application is more complex where you can specify which client you need to send message to it, also all calls are performed concurrently. If connection to the specific client is slow (or is broken), sending to other clients will not be delayed until that specific client replies (or server recognizes clients unavailability via time-out), Download Link.

this tow applications written by me using Remoting Service technique.

To understanding samples you must be aware about remoting service and event delegate

 

References And Links

Books:

MCAD/MCSD Self-Paced Training Kit: Developing XML Web Services and Server Components

Advanced .NET Remoting, by Ingo Rammer

Links:

.NET Remoting Overview

.NET Remoting - Events

No Comments