Hi,
My content server is hosted on a remote machine and am trying to connect the same using a stand-alone java program running on my machine.
But whenever I am trying to create a new session using sessionmanager instance, following error is encountered
DfIdentityException:: THREAD: main; MSG: [DFC_BOF_WRONG_IDENTITY] LoginInfo and Principal for "MARSH" docbase are not defined or wrong.; ERRORCODE: 1906; NEXT: null
at com.documentum.fc.client.impl.session.SessionManager.getSessionFromFactory(SessionManager.java:121)
at com.documentum.fc.client.impl.session.SessionManager.newSession(SessionManager.java:64)
at com.documentum.fc.client.impl.session.SessionManager.getSession(SessionManager.java:168)
IDfClientX cx = new DfClientX();
client = cx.getLocalClient();
smgr = client.newSessionManager();
IDfLoginInfo login = cx.getLoginInfo();
login.setUser("dm_bof_registry");
login.setPassword("GrRNPhLJrkoTDAZE0RGJow\\=\\=");
smgr.setIdentity("Test", login);
session = smgr.newSession("Test");
Test is the name of my repository.
Can you please let me know how this issue can be resolved?
Thanks,
Jason