tags:

views:

67

answers:

2

hi all I am doing applications on .net remoting ,i write the code for

       Client -----------> server

but

       client <------------ server

i don't know how to do it(just like a chat),Please give suggestions and some samples to look up.

   without any request from server i send messages from my client application
A: 

Checkout WebORB from themidnightcoders.com. There are .NET examples of your scenario. WebORB includes many features including AMF remoting.

Ryan Miller
AMF remoting is not related to .NET Remoting.
Sam
+1  A: 

Try using MarshalByRefObject and events. This would allow the Server to respond back to the client.

Here is a sample on code project

Another Sample with Event CallBack

Matthew Whited