I need to read response (on Domino Console) for command like: "tell http show security"
It works when I do 'show' commands (see example below). Res will get full response.
res = notesSession.SendConsoleCommand("server", "show server")
However that does not work for 'tell' commands. It returns a string
res = notesSession.SendConsoleCommand("server", "tell http show security")
Command has been executed on remote server. Use 'Live' console option, in future, to view response from server.
I have also tried to do
tell http show security >http_security.txt
File gets same string
Command has been executed on remote server. Use 'Live' console option, in future, to view response from server.
Is there a nice way to read response?
p.s. I would like to avoid scanning log.nsf as it's going to be heavy task.
Thanks.