如何从 Apache 服务器连接到 Notes 数据库

How to connect to a Notes DB from an Apache Server

我希望我使用了正确的术语。如果不是,请纠正我。

如何使用 PHP 访问 .nsf 文件?我需要获取表的一些字段值以供全球客户登录。假设我需要验证客户端是否已注册并且该值是否存储在 xyz.nsf 文件中。如何连接以及如何访问它?

根据 URL.

的 http/https 请求访问您的数据

您有多种选择:

  1. 使用开箱即用 Domino URL commands like URL commands for opening documents by key
  2. 使用IBM Domino Access Services (DAS)
  3. 基于ExtLib REST Service
  4. 创建您自己的 REST 服务
  5. 创建一个以 JSON (see example)
  6. 形式传送数据的 XAgent
  7. create your own Domino REST service using DAS

选项 #1 returns HTML。所有其他 return JSON 数据可能最好用 PHP 处理。我会选择#3 ExtLib REST 服务。