我正在设置我的远程连接:
port = new Random().Next(REMOTING_PORT_MIN, REMOTING_PORT_MAX);
TcpChannel chan = new TcpChannel(port);
ChannelServices.RegisterChannel(chan, false);
RemotingConfiguration.RegisterWellKnownServiceType(typeof(NotificationService), "CallOnMe.rem", WellKnownObjectMode.Singleton);
notService = new NotificationService();
notService.NotificationMessageEvent += new NotificationService.NotificationMessageEventHandler(notService_NotificationMessageEvent);
RemotingServices.Marshal(notService, "CallOnMe.rem");
但是经常连接丢失并且需要重新建立连接,我该如何检查连接是否仍然打开?
答案 0 :(得分:0)
我不知道您可以检查连接是否仍处于活动状态的任何方法。 但您可以通过在服务器上定期调用虚方法或使用远程处理对象执行其他操作来轻松实现此操作。然后你可以检查异常,并尝试重新连接。