I have an object created in a host application and can accecss it remotely using remoting, is there any way I can test the connection to ensure it is still "alive"? Maybe an event I can use that fires if the remoting connection gets disconnected, or some property that can tell me the state of the remoting connection. Is there something like this available?
|
feedback
|
|
I generally add another method to the remoting server MarshallByRef class, (I generally name it Ping(), as in:
that does nothing, and returns nothing.. Then to "test" my connection, I call this method... If it throws a System.Net.Sockets.Exception, I have lost the connection.... | |||
feedback
|
|
What benefit will you have to check the connection? Even if you ping it, it does not mean that in the next moment the connection will still be alive when you make your remoting call. Just try/catch you remoting calls and you will know. This type of checks are meaningless (net connection, file locking, etc.). As the state of the thing you check can change immediately after the check. You just tray, and cleanup/retry if it fails. | |||||||
feedback
|
|
I think that the key here is if there would be a firewall between the two servers involved and it the ports are blocked by that firewall, then a ping function would be very usefull to see if the firewall ports are open and has nothing to do with writing a good code. A good code would try multiple times and if it fails would tell you to check the firewall (maybe?). I hope my post helps some of you to look outside the box for the reasons. | |||
feedback
|