0

是否可以使用 C# API检查与Domino 服务器的连接状态?

我有一个 C# 应用程序,我必须检查与 Domino 服务器的连接是否仍然有效,或者 Domino 服务器重新启动并且我失去了连接。我如何以编程方式检查?

4

1 回答 1

0

像这样的东西应该可以解决问题。如果失败,则无法建立与服务器的连接。

Domino.NotesSession s = new Domino.NotesSession();
Domino.NotesDatabase db;

try
{
   LNSession.Initialize("password");
   LNDatabase = LNSession.GetDatabase("my lotus mail server", @"names.nsf", false);
}
catch (Exception e)   // Not sure on the specific exception
{
   // Connection failed
}
于 2011-09-06T01:02:23.350 回答