gpt4 book ai didi

lotus-domino - 我可以从不同的服务器读取 notes.ini 参数吗?

转载 作者:行者123 更新时间:2023-12-01 12:29:28 25 4
gpt4 key购买 nike

我想知道我是否能够在服务器 A 上运行的代理中打开服务器连接以访问服务器 B 的 notes.ini。我想读取检查 notes.ini 中的参数。这可能通过编码吗?我知道 session.getEnvironment 方法,但它们访问运行代理的服务器(或 Notes 客户端)的 notes.ini。有什么想法吗?

使用了 Egor 的解决方案:

/**
* checks for notes.ini value for
* @return
* @throws NotesException
*/
private boolean checkNoSessionInfo(String serverName) {
boolean result = false;
try {
String console = session.sendConsoleCommand(serverName, "show config *");
result = console.contains("LOG_DISABLE_SESSION_INFO=1");
} catch (NotesException e) {
oli.logErrorEx(e, "Could not check if server's user session info was disabled", OpenLogItem.SEVERITY_MEDIUM, null);
}
return result;
}

工作起来很有魅力! :-)

谢谢大家!

最佳答案

尝试将服务器 A 添加到 names.nsf 中的服务器 B 服务器文档的受信任服务器(可能还有安全选项卡上的其他几个字段)。在我使用 Session.sendConsoleCommand 方法之后(使用命令“show config *”。请参阅文档以供引用:https://www-01.ibm.com/support/knowledgecenter/SSVRGU_9.0.1/com.ibm.designer.domino.main.doc/H_SENDCONSOLECOMMAND_METHOD_SESSION_JAVA.html

关于lotus-domino - 我可以从不同的服务器读取 notes.ini 参数吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35742845/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com