Hello,
We are building an application which authenticates against LDAP and then uses some DFS against Documentum 6.5 SP3. We cannot get the DFS SsoIdentity to work though. We have a super user which authenticates correctly. Then we try adding the SsoIdentity to the ServiceContext object like so:
SsoIdentity identity = new SsoIdentity();
identity.setUserName("user");
serviceContext.addIdentity(identity);
//remove super user id
Iterator iter = serviceContext.getIdentities();
while ( iter.hasNext() )
{
if ( superUserId.equals(iter.next()) )
{
iter.remove();
break;
}
}
The super admin is removed from the serviceContext and the new user is added. Next using an ObjectService we query for an object by ObjectId which only the super user has access to and it still returns for the SsoIdentity user. Any ideas? Does anyone know where the SsoIdentity documentation is or how it works? Is there server side setup on the Method Server? If yes where do I start with that because I have not done any. Thanks for any help it is greatly appreciated.