私は問題を抱えており、誰かが私を助けてくれることを願っています
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スレッドを使用したバージョンを試しましたが、実際には良くありません。
thean私はOpenntfで何かを見つけました http://www.openntf.org/internal/home.nsf/project.xsp?action=openDocument&name=Threads%20and%20Jobs
しかし、そこで「AccessControl例外」が発生しました
これ以上のアイデアはありません。誰かが複数のスレッドでXAgentを作成する方法を知っていることを願っています