up vote 3 down vote favorite
1
share [g+] share [fb]

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?

link|improve this question

65% accept rate
feedback

3 Answers

up vote 6 down vote accepted

I generally add another method to the remoting server MarshallByRef class, (I generally name it Ping(), as in:

 public void Ping() {}

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....

link|improve this answer
Thanks, I guess you validated my suspicion that there was no facility in the framework to give me this functionality. This ping method should work fine. Thanks – Jeremy Nov 13 '08 at 18:12
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.

link|improve this answer
Because the object I'm remoting is hosted in a windows application. If the application isn't running, I want to be able to restart it. – Jeremy Nov 13 '08 at 19:09
same thing - if the call fails, restart. as I said, pinging is almost the same, except that it is one more call, as it does not guarantee in any way that the next call will succeed, or that the application will not close before or during the next call. – Sunny Nov 13 '08 at 22:31
I was looking for a similar solution to what @Jeremy was after, and the 'Ping' idea would have worked for me too. @Sunny is right though, its much better to handle the exception at the base level as the remoting object could well close immediately after the 'Ping' test. – Fly_Trap Mar 1 '11 at 11:50
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.

link|improve this answer
A Firewall could block a ping and can leave .NET remoting pass. A Ping to a Server would therefor not tell if the .NET remoting object is still alive. – oberfreak Nov 21 '11 at 22:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.