Hi,
We have an specific requirement in which we have to test whether the documentum repository services is up or down before getting the IDfSession. Is the following code is correct ?
testSess = sessMgr.newSession(docBaseName);
if (testSess.isConnected())
{
System.out.println("Service is UP please proceed...");
//Get the session
}
else
System.out.println("Service id DOWN...");
Can you guys help me on this.
Regards,
Raj