我有问题,希望有人能帮助我
我正在尝试从 XAgent 启动多个线程(未呈现 XPage)
public class ImportThread extends NotesThread {
Session currentSession;
public ImportThread(String maildb, String Server)
{
try{
currentSession =DominoAccess.getCurrentSession();
this.maildb = currentSession.getDatabase(Server, maildb);
}catch (Exception e) {
e.printStackTrace();
}
}
public void runNotes()
{
View v = maildb.getView("$Calendar");
}
在这个版本中,我无法访问视图我只得到“null”返回我尝试了一个 Java 线程版本并没有更好。
但我得到了一个“访问控制异常”
我没有更多的想法,我希望有人知道如何创建具有多线程的 XAgent