Menu

Missing dlls

2006-08-01
2013-06-03
  • Nobody/Anonymous

    I installed domingo an ran a test... didnt work!
    so, i spent the whole debbuging and finally recognizing, that i had to add my Lotus Notes Client-Path to my System Path-Var.

    Google told me, that a lot of people have this problem and almost go crazy.

    So, i think you should add a this information to your "Installation"-Page

     
    • Kurt Riede

      Kurt Riede - 2006-12-04

      Thank you for the tip, We updated the documentation:

      http://domingo.sourceforge.net/getting-started.html

       
    • carpe341

      carpe341 - 2007-11-12

      Hi,

      I am trying to install Domingo 1.4, I follow the "Installation" and "Getting Started" instructions, finally i made this class and obtain the following result.

      Can anybody help me, i spent 3 days and dont work!!!  :(

      I have lotus Notes 7.

      thanks!!!!

      ------

      import java.util.Properties;
      import de.bea.domingo.DDatabase;
      import de.bea.domingo.DNotesException;
      import de.bea.domingo.DNotesFactory;
      import de.bea.domingo.DSession;

      public class Test {
        public static void main(String[] args) throws DNotesException {
          Properties p = System.getProperties();
          System.out.println("java.library.path : " + p.getProperty("java.library.path"));
          System.out.println("java.class.path : " + p.getProperty("java.class.path"));

          DNotesFactory factory = DNotesFactory.getInstance();
          DSession session = factory.getSession();
          DDatabase database = session.getDatabase("", "names.nsf");
          System.out.println(database.getTitle());
        }
      }

      ---------

      java.library.path : C:\Program Files\IBM\Java50\jre\bin;.;C:\notes
      java.class.path : C:\temp\PruebasNotes\DomingoTest;C:\notes\notes.jar;C:\notes\jvm\lib\ext\domingo-1.4.jar
      Exception in thread "main" de.bea.domingo.service.NotesServiceRuntimeException: nlsxbe (JVMPORT015E Unable to resolve DLL references - a prerequisite DLL may be missing)
          at de.bea.domingo.service.NotesServiceFactory.throwWrappedException(NotesServiceFactory.java:320)
          at de.bea.domingo.service.NotesServiceFactory.initThreadPool(NotesServiceFactory.java:296)
          at de.bea.domingo.service.NotesServiceFactory.getSession(NotesServiceFactory.java:131)
          at Test.main(Test.java:20)
      Caused by: java.lang.UnsatisfiedLinkError: nlsxbe (JVMPORT015E Unable to resolve DLL references - a prerequisite DLL may be missing)
          at java.lang.ClassLoader.loadLibraryWithPath(ClassLoader.java:952)
          at java.lang.ClassLoader.loadLibraryWithClassLoader(ClassLoader.java:921)
          at java.lang.System.loadLibrary(System.java:452)
          at lotus.domino.NotesThread.load(NotesThread.java:299)
          at lotus.domino.NotesThread.checkLoaded(NotesThread.java:320)
          at lotus.domino.NotesThread.sinitThread(NotesThread.java:174)
          at de.bea.domingo.proxy.NotesProxyFactory.sinitThread(NotesProxyFactory.java:608)
          at de.bea.domingo.service.NotesServiceFactory.sinitThread(NotesServiceFactory.java:372)
          at de.bea.domingo.service.NotesServiceFactory$NotesThreadFactory.initThread(NotesServiceFactory.java:438)
          at de.bea.domingo.threadpool.SimpleThreadPool.run(SimpleThreadPool.java:341)
          at de.bea.domingo.proxy.DNotesThread.run(DNotesThread.java:241)

       

Log in to post a comment.