I have simple COM component.
Dim lSession As New NotesSession
Dim lDatabase As NotesDatabase
Dim lAgent As NotesAgent
Call lSession.InitializeUsingNotesUserName(USERNAME, PASSWORD)
Set lDatabase = lSession.GetDatabase(SERVER_NAME, DATABASE_NAME)
Set lAgent = pDatabase.GetAgent(AGENT_NAME)
lAgent.RunOnServer
everything is working fine, COM component connects to Domino, lAgent has all properties of agent I want to start and there are no errors in the log.
Only problem - agent is not started…
I am very confused with this.
Please help.
Thank you.