I'm trying to implement OpenNTF Domino API as a replacement in our project but it fails with this message: "OpenNTF Domino API: org.openntf.domino.utils.Factory is not initialized for this thread!"
Code snippet: boolean init = Factory.isInitialized(); // false Database db = Factory.getSession().getCurrentDatabase(); // This fails of course because no Session
I'm implementing the call in a JAVA DAO behind a EXTLib Servlet in XPages. So it's not called by an XPage but as an REST API call.
The Domino API Demo DB is working so the server install seems to be OK.
Is there a setup, properties I'm missing to init it ?