Remoting
-
Looking to find how I can get a remoted object to contact client applications. I need to reference the application from the server process but there is no such thing as referencing an application. How can I get this done?
-
Looking to find how I can get a remoted object to contact client applications. I need to reference the application from the server process but there is no such thing as referencing an application. How can I get this done?
you need to have a bidirectional remoting channel. I think the standard .net channel classes are only unidirectional. Search the web for "bidirectional remoting channel". I've seen such a tutorial but I can't remember where it was.
-
you need to have a bidirectional remoting channel. I think the standard .net channel classes are only unidirectional. Search the web for "bidirectional remoting channel". I've seen such a tutorial but I can't remember where it was.
If I am not mistaken I just found a simple chat application. I believe it is raising an event on the objects that instantiate em. Is this the way to pull it off? Thanks for your input Klaus.
-
If I am not mistaken I just found a simple chat application. I believe it is raising an event on the objects that instantiate em. Is this the way to pull it off? Thanks for your input Klaus.
It depends if the chat app is using remoting. Take a look here: http://www.ingorammer.com/Software/OpenSourceRemoting/BiDirTcpChannel.html