如何使用.NET 获取网络上的Domino 服务器列表?
我想获取网络上的 Domino 服务器列表,并相应地登录到特定服务器。
我正在使用 C# / Interop.Domino.dll
有什么想法如何做到这一点?
I want to get list of Domino Servers on the network, and accordingly login into particular server.
I am using C# / Interop.Domino.dll
Any ideas how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以检查名称已知的服务器上的名称和地址簿(NAB - 通常是名称.nsf 数据库) - NAB 有一个别名为“服务器”的视图,其中列出了该服务器知道的所有服务器。 (它可能不是所有可访问服务器的完整列表)。如果您不知道要启动的服务器名称,您可以找到当前会话用户的家庭邮件服务器并使用它。
因此,您想要执行以下操作:
You can check the Name and Address Book (NAB - usually, the names.nsf database) on a server whose name is known - that NAB has a view with an alias of "Servers", which lists all servers that this server is aware of. (It may not be a complete list of all accessible servers). If you don't know of any server names to start, you can find the current session user's home mail server, and use that.
So, you want to do something like: