JAVA/CORBA CLASSES
import lotus.domino.*; class version extends NotesThread { public static void main(String argv[]) { version t = new version(); t.start(); } public void runNotes() { try { Session s = NotesFactory.createSession(); String v = s.getNotesVersion(); System.out.println("Domino version = " + v); } catch (Exception e) { e.printStackTrace(); } } }
See Also