检查与 Domino 服务器的连接状态

发布于 2024-12-03 02:13:27 字数 206 浏览 1 评论 0原文

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

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

Is it is possible to check the connection status with Domino server using a C# API?

I have a C# application, and I have to check if the connection with the Domino server is still alive or thr Domino server restarts and I lose thr connection. How I can check that programmatically?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

囍孤女 2024-12-10 02:13:27

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

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
}

Something like this ought to do the trick. If this fails then the connection to the server couldn't be made.

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
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文