如何访问“nsf 文件” 如果您的机器上没有安装 Lotus Notes?
目前我可以访问 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我很久以前就这样做了,如果我没记错的话,在没有安装 Notes 客户端的情况下不可能使用 Introp.Domino.dll。
解决方案是解析将“?ReadViewEntries”添加到 nsf url 时返回的 xml。
祝你好运,
雷特
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.
Good luck,
rAyt
如果您没有安装 Lotus Notes,那么获得访问权限的唯一方法是连接到 Domino 服务器。 有几种方法(如果使用 C#)。
HTTP 示例。
上面的 docName 将是该项目视图中第 1 列的值。 您还可以使用每个项目的 UNID 进行访问。 更多示例请参见 Domino wiki。
Web 服务
Domino 7.x 及更高版本支持 Web 服务提供程序。 8.x 支持提供者和消费者。 例子。
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.
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.