Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

UI Expand
titleJava

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:

Code Block
languagexml
titleCMIS configuration
blueriq.cmis.user=xxx

blueriq.cmis.password=xxx

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

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

blueriq.cmis.
objectTypeId
objectType-id=D:br:documentOne

blueriq.cmis.
bindingType
binding-type=atompub


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

blueriq.cmis.
authProvider.class
authProviderClassName=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]

UI Expand
title.NET

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

Code Block
languagexml
titleCMIS 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.

 

Code Block
languagexml
titleCMIS 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" />

...