JAVA/CORBA CLASSES
import lotus.domino.*; class getenvval2 extends NotesThread { public static void main(String argv[]) { getenvval2 t = new getenvval2(); t.start(); } public void runNotes() { try { Session s = NotesFactory.createSession(); Object tz = s.getEnvironmentValue("TimeZone", true); if (tz == null) System.out.println("No TimeZone"); else System.out.println("TimeZone = " + tz); } catch (Exception e) { e.printStackTrace(); } } }
See Also