Foros de discusión

LR6.1 - Documentum repository integration with liferay

thumbnail
Ahamed Sakir, modificado hace 9 años.

LR6.1 - Documentum repository integration with liferay

Regular Member Mensajes: 129 Fecha de incorporación: 22/08/08 Mensajes recientes
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, modificado hace 9 años.

RE: LR6.1 - Documentum repository integration with liferay

Liferay Legend Mensajes: 1519 Fecha de incorporación: 7/08/06 Mensajes recientes
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, modificado hace 9 años.

RE: LR6.1 - Documentum repository integration with liferay

Regular Member Mensajes: 129 Fecha de incorporación: 22/08/08 Mensajes recientes
Thanks Mika Koivisto......