i am using below code to get the documentum session to connect .
getting the error .
(ModuleManager.java:414) - [DFC_BOF_COULDNT_CONNECT_TO_REGISTRY] Unable to connect to module registry, docbase name DMSDEV username dm_bof_registry.
java.lang.IllegalArgumentException: Cannot support TLS_DH_anon_WITH_AES_256_CBC_SHA with currently installed providers
at sun.security.ssl.CipherSuiteList.<init>(CipherSuiteList.java:81)
(RegistrationMgr.java:39) - [DFC_SECURITY_GR_PUBLICATION_FAILED] Publication of DFC instance with global registry failed
DfException:: THREAD: main; MSG: [DFC_BOF_GLOBAL_REGISTRY_UNAVAILABLE] Unable to connect to the global registry no session; ERRORCODE: ff; NEXT: null
at com.documentum.fc.client.security.impl.DfcIdentityPublisher.<init>(DfcIdentityPublisher.java:55)
below code is used to get the connection
IDfClient client = DfClient.getLocalClient();
logger.info("client...."+client);
// Create an IDfLoginInfo object named loginInfoObj
IDfLoginInfo loginInfoObj = new DfLoginInfo();
loginInfoObj.setUser(username);
loginInfoObj.setPassword(password);
loginInfoObj.setDomain(null);
// Identify the Docbase to connect to
// Bind the Session Manager to the login info
sessionManager = client.newSessionManager();
sessionManager.setIdentity(docbase, loginInfoObj);
// Start a session
session = sessionManager.getSession(docbase);
logger.info("session...."+session);
// Create a new document object in the session
IDfDocument documentObj = (IDfDocument) session.newObject(dm_document);
need help to resolve this issue