如何访问“nsf 文件” 如果您的机器上没有安装 Lotus Notes?

发布于 2024-07-30 18:15:10 字数 106 浏览 6 评论 0原文

目前我可以访问 nsf 所有 nsg 文件。但是一旦我从机器中卸载 Lotus Notes,程序就无法工作。

我正在使用“Introp.Domino.dll”。 语言:C#

Currently i can access nsf all nsg files.But once i uninstall Lotus Notes form my machine program doesn't work.

I am using "Introp.Domino.dll".
Language: C#

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

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

发布评论

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

评论(2

谁对谁错谁最难过 2024-08-06 18:15:10

我很久以前就这样做了,如果我没记错的话,在没有安装 Notes 客户端的情况下不可能使用 Introp.Domino.dll。

解决方案是解析将“?ReadViewEntries”添加到 nsf url 时返回的 xml。

youdominoserver/names.nsf?ReadViewEntries 

祝你好运,
雷特

I did this a long time ago, and if I remember it correctly it's not possible to use the Introp.Domino.dll without the Notes client installed.

A solution is to parse the xml returned when you add the " ?ReadViewEntries " to the nsf url.

youdominoserver/names.nsf?ReadViewEntries 

Good luck,
rAyt

早茶月光 2024-08-06 18:15:10

如果您没有安装 Lotus Notes,那么获得访问权限的唯一方法是连接到 Domino 服务器。 有几种方法(如果使用 C#)。

HTTP 示例。

server/database.nsf/viewName?readviewentries
server/database.nsf/viewName?readviewentries&OutputFormat=JSON
server/database.nsf/viewName/docname?OpenDocument 
server/database.nsf/agentName?OpenAgent&variable=xxx

上面的 docName 将是该项目视图中第 1 列的值。 您还可以使用每个项目的 UNID 进行访问。 更多示例请参见 Domino wiki

Web 服务

Domino 7.x 及更高版本支持 Web 服务提供程序。 8.x 支持提供者和消费者。 例子。

server/database.nsf/webService?WSDL 
server/database.nsf/webService?OpenWebService 

If you don't have Lotus Notes installed then the only way to get access is to connect to a Domino server. There a couple of ways (if using C#).

HTTP Examples.

server/database.nsf/viewName?readviewentries
server/database.nsf/viewName?readviewentries&OutputFormat=JSON
server/database.nsf/viewName/docname?OpenDocument 
server/database.nsf/agentName?OpenAgent&variable=xxx

docName above would be the value of column 1 in the view for that item. You can also access using the UNID of each item. More examples on the Domino wiki.

Web Services

Domino 7.x and later supports Web Service providers. 8.x supports Providers and consumers. Example.

server/database.nsf/webService?WSDL 
server/database.nsf/webService?OpenWebService 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文