Skip to Main Content
HCL Domino Ideas Portal

Welcome to the #dominoforever Product Ideas Forum! The place where you can submit product ideas and enhancement request. We encourage you to participate by voting on, commenting on, and creating new ideas. All new ideas will be evaluated by HCL Product Management & Engineering teams, and the next steps will be communicated. While not all submitted ideas will be executed upon, community feedback will play a key role in influencing which ideas are and when they will be implemented.

For more information and upcoming events around #dominoforever, please visit our Destination Domino Page

Status Shipped
Workspace Domino Designer
Categories LotusScript
Created by Guest
Created on Nov 6, 2019

Add proxy support to (Notes)HTTPRequest class

By now, you can instantiate a new NotesHttpRequest by defining

Dim httpReq As NotesHTTPRequest

This works as long as the company security policy does not expects that the connection has to be done using a Proxy.

I would like to see an enhancement to the NotesHttpRequest class where I can pass an optional NotesProxy object in the constructor

Dim httpReq As NotesHTTPRequest(proxy)

where proxy would be a new class NotesProxy.

NotesProxy needs to have the following properties

URI = URI of the proxy
port = port to be used
proxyUser = user for authentication with the proxy (optional)
proxyUserPwd = PWD for proxyUser (optional)