Remoting Q.
-
Help ! I'm utterly confused on Remoting.... I need my Client Proxy Class to hook to a running instance of a Server Object and to know the state of the object. Anyone please got any ideas on how this is done (in simple language if possible, I'm very new to c#).. I'm tearing whats left of my hair out trying to find a tutorial for this. I can instantiate a class and get it to do things remotely but I dont just want that I want the class to be a hook to the app and know if its connected to a database etc etc.... Any ideas PLEASE...PLEASE...I'm going nuts with this one... Cheers Chubby.
-
Help ! I'm utterly confused on Remoting.... I need my Client Proxy Class to hook to a running instance of a Server Object and to know the state of the object. Anyone please got any ideas on how this is done (in simple language if possible, I'm very new to c#).. I'm tearing whats left of my hair out trying to find a tutorial for this. I can instantiate a class and get it to do things remotely but I dont just want that I want the class to be a hook to the app and know if its connected to a database etc etc.... Any ideas PLEASE...PLEASE...I'm going nuts with this one... Cheers Chubby.
Maybe you're looking for the
RemotingServices.Marshal
method? You can pass an instance of the server object to it and all clients will be able to access that object. Regards Senthil _____________________________ My Blog | My Articles | WinMacro -
Maybe you're looking for the
RemotingServices.Marshal
method? You can pass an instance of the server object to it and all clients will be able to access that object. Regards Senthil _____________________________ My Blog | My Articles | WinMacroThat's exactly what I was looking for. With your help I managed to prove the concept of hooking to my Server EXE. Cheers. Chubby..