Lotus Notes Java app can’t find notes.ini

后端 未结 3 1700
礼貌的吻别
礼貌的吻别 2021-01-22 03:57

Both the systems described are Windows XP with Lotus Notes 8.5.

I have a Java app (sample code below) that uses notes.jar to interact with Lotus Notes. The app works fin

相关标签:
3条回答
  • 2021-01-22 04:49

    Add a new command-line parameter, "=c:\data\johnsmith\NotesData\notes.ini" . To make this happen, you need to use NotesFactory.CreateSession(String host, String args[], String user, String passwd); method, after setting up a new String array containing that parameter and whatever other arguments were passed, since itis basically supposed to be the String args[] as passed to static Main. (The =fullpath\notes.ini parameter just needs to be in the array, it doesn't need to be in any specific location.)

    This permits the session to be initialized with the absolute path to the notes.ini file used, and appears to be supported since (though I could be wrong) Notes 5.0.5.

    Notably, the Directory= line is going to be taken from that notes.ini and used for all error reporting and logging, as the user's private data directory.

    0 讨论(0)
  • 2021-01-22 04:51

    As mentioned in the original question, if HKEY_LOCAL_MACHINE\Software\Lotus\Notes\MultiUser has a value of 1, then you have a multi-user installation (even if you are the only user of Lotus).

    Here is a solution that worked. Find the location of Notes.ini, probably somewhere like C:\Documents and Settings\(username)\Lotus. Edit or create the string value below and set it to your Notes.ini directory. HKEY_CURRENT_USER\Software\Lotus\Notes\(optional-version)\NotesIniPath.

    In a multi-user environment, Lotus Notes gets the ini filename from the NotesIniPath registry value.

    0 讨论(0)
  • 2021-01-22 04:53

    There is a number of things you can try:

    1. Notes actually comes with its own JVM and I found using this JVM makes Java applications run more reliably with Notes classes since any eventually needed support library would be properly configured.

    2. What happens if notes is already running before you start your program. There are 2 variations here: Checkbox "Don't prompt for a password from other Notes-based programs" is checked or unchecked.

    3. Make sure to switch to the directory where the Notes.ini is at home before you run the app. (And verify that the user can't see any other notes.ini variables)

    0 讨论(0)
提交回复
热议问题