如何在笔记代理中为 NotesHttpRequest 添加 class?
How to add a class for NotesHttpRequest in a notes agent?
我想通过 Notes 代理发出一个简单的 Notes HTTP 请求,但总是出现以下消息:
Class or type name not found: NOTESHTTPREQUEST
我的代码:
Dim webRequest as NotesHTTPRequest
Set webRequest = NotesSession.CreateHTTPRequest()
Call webRequest.get(URL$)
问题:
我需要做什么才能在 Notes 代理中导入通过 Lotus Script 的简单 GET 请求所需的 class?
NotesHTTPRequest 是 Notes/Domino 10.x 的新增内容。所以需要Notes/Domino10.x才能使用
我想通过 Notes 代理发出一个简单的 Notes HTTP 请求,但总是出现以下消息:
Class or type name not found: NOTESHTTPREQUEST
我的代码:
Dim webRequest as NotesHTTPRequest
Set webRequest = NotesSession.CreateHTTPRequest()
Call webRequest.get(URL$)
问题:
我需要做什么才能在 Notes 代理中导入通过 Lotus Script 的简单 GET 请求所需的 class?
NotesHTTPRequest 是 Notes/Domino 10.x 的新增内容。所以需要Notes/Domino10.x才能使用