How to test a remoting connection (check state) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T01:59:25Z http://stackoverflow.com/feeds/question/287540 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/287540/how-to-test-a-remoting-connection-check-state 2 How to test a remoting connection (check state) Jeremy 2008-11-13T17:08:16Z 2008-11-13T18:34:18Z <p>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?</p> http://stackoverflow.com/questions/287540/how-to-test-a-remoting-connection-check-state/287567#287567 4 Answer by Charles Bretana for How to test a remoting connection (check state) Charles Bretana 2008-11-13T17:18:31Z 2008-11-13T17:18:31Z <p>I generally add another method to the remoting server MarshallByRef class, (I generally name it Ping(), as in: </p> <pre><code> public void Ping() {} </code></pre> <p>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.... </p> http://stackoverflow.com/questions/287540/how-to-test-a-remoting-connection-check-state/287799#287799 2 Answer by Sunny for How to test a remoting connection (check state) Sunny 2008-11-13T18:34:18Z 2008-11-13T18:34:18Z <p>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.</p> <p>Just try/catch you remoting calls and you will know.</p> <p>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.</p>