I am working on a application where the connected system is Lotus Server. I am creating a session using NotesFactory.createSession(). Lotus server name is : CN=gpiyushxp/O=temp and the Admin user name is CN=Notes Admin/O=temp. While using the same configuration of the application(other config parameters) with 8.5 and 8.5.2 I am getting a difference in the createSession() method. NotesThread.sinitThread ();
NotesSess = lotus.domino.NotesFactory.createSession();
sUserName = NotesSess.getUserName ();
with 8.5 I am getting sUserName as CN=Notes Admin/O=temp which means session created by Admin user but with 8.5.2 I am getting CN=gpiyushxp/O=temp which means session created by server. Can anyone tell me how this is happening. have I made some change in the database file which is causing this. How creareSession() creates a session.