Foren

LR6.1 - Documentum repository integration with liferay

thumbnail
Ahamed Sakir, geändert vor 9 Jahren.

LR6.1 - Documentum repository integration with liferay

Regular Member Beiträge: 129 Beitrittsdatum: 22.08.08 Neueste Beiträge
Hi All,
I have followed https://www.liferay.com/marketplace/-/mp/application/15098914 and downloaded Documentum Connector EE Hook plugin and deployed in my local server.
While adding new repository in document and media portlet showing repository type as Documentum. But I want to know that other fields how to configure like Name,Repository and Cabinet
Any help with example please.
thumbnail
Mika Koivisto, geändert vor 9 Jahren.

RE: LR6.1 - Documentum repository integration with liferay

Liferay Legend Beiträge: 1519 Beitrittsdatum: 07.08.06 Neueste Beiträge
The connector uses DFC so the configuration is as with pretty much any DFC client. Most of this information you'll get from your Documentum Administrator.

1. Modify WEB-INF/classes/dfc.properties inside documentum-hook.war and set dfc.docbroker.host[0] to where ever you Documentum broker is installed and you'll also need to adjust dfc.globalregistry.username and dfc.globalregistry.password based on the system. Then password is encoded by com.documentum.fc.tools.RegistryPasswordUtil. In developer install the default password is documentum-1 which is encoded as KmYwfPemMrpphRf5Lwazxg==
and the username is dm_bof_registry

2. Deploy the war with modified dfc.properties

3. In portal-ext.properties set:
session.store.password=true
company.security.auth.type=screenName

4. Restart Liferay so that new setting will be applied

5. Add a new repository on Liferay DocLib. Name is what ever you want it to display on doclib as the repository name. Repository is the Documentum repository name where you are connecting. You'll get this from your Documentum sysadmin. In developer install the default repository is called documentum. The cabinet is the name of the Documentum Cabinet you are connecting to. For example in developer install there should be cabinet named Wombat Insurance Co. Now one note is that the user adding the repository must have proper rights on Documentum otherwise it will fail.
thumbnail
Ahamed Sakir, geändert vor 9 Jahren.

RE: LR6.1 - Documentum repository integration with liferay

Regular Member Beiträge: 129 Beitrittsdatum: 22.08.08 Neueste Beiträge
Thanks Mika Koivisto......