You are viewing the documentation for Blueriq 17. Documentation for other versions is available in our documentation directory.

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Table of contents


Description

The Blueriq CMIS Client component makes it possible to connect to Document Management Systems that implement the CMIS (Content Management Interoperability Services) standard like Alfresco Document Management System and IBM FileNet.

The CMIS Spec 1.1 is supported.

 

Requirements

N/A

Installation

Unzip the CMIS-Plugin-x.y.z.zip and add the extracted jar to the classpath of your application. Also place the *.properties files in your blueriq config location. 

The plugins can be found in the installation package:

When the plugins are installed and configured in the right way, they will be shown in the runtime dashboard in the "Installed plugins" overview.

Configuration

Go to the directory Blueriq\Runtime\aquima.home and configure the right properties as they are made in the DMS.

Below you will find an example how to configure:

cmis.user=xxx

cmis.password=xxx

cmis.servicesUrl=http://aq-acc:9080/alfresco/cmisatom

cmis.repositoryId=14f2517f-fb35-4d86-821e-2d0b37929f72

cmis.objectTypeId=D:br:documentOne

cmis.bindingType=atompub

# Set this property only if you want to override the default BASIC (cmis.user, cmis.password) authentication with a custom authentication mechanism

cmis.authProvider.class=com.somecompany.plugin.cmis.impl.SomeCustomAuthenticationProvider

# The following setting lets you choose if you want to treat path and filename combinations as unique. For systems such as FileNet, when setting this to false, then it is possible to create two files with different Ids on the same path and filename combination. The default setting is true.

cmis.uniquePathFilename=[true|false]

Open the Web.config file and place the following line between the configSections tags. 

CMIS configuration section
<section name="cmis" type="Aquima.Plugin.Cmis.Config.CmisConfigurationSectionHandler"/>

Hereafter add the following lines between the configuration tags with the correct property values.

 

CMIS connection configuration
<cmis user="xxx"
          password="xxx"
          serviceUrl="http://aq-acc:9080/alfresco/cmisatom"
          repositoryId="2f074dcf-fb38-4536-801b-910ecc547e59"
          objectTypeId="D:br:documentOne"
          bindingType="atompub" />

Usage

In how to setup a CMIS connection an example is worked out for using this component.

Troubleshooting

N/A

See also

AQ_CMIS_DocumentManager

AQ_Web_FileUpload

How to setup a CMIS connection

 

  • No labels