Versions Compared

Key

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

...

UI Expand
titleJava

Add the artifact with groupId " com.blueriq" and artifactId "blueriqartifactId blueriq-component-cmis-client " as a dependency to your Blueriq runtime POM file if you want to depend on it.

In order to use this component, the cmis-client

Include Page
_ProfileCMIS
_ProfileCMIS
profile  profile must be active. More information on how to configure the application using Spring Profiles can be found here : Application configuration with Spring Profiles

UI Expand
title.NET

In order to remove this component, the BlueriqComponentCmisClient.dll should be removed from the /bin directory of your .NET webapp installation.

...

UI Expand
titleJava

The following properties in the application.properties

Include Page
_PropertiesFileJavaR10
_PropertiesFileJavaR10
are used to configure the cmis component:

Code Block
languagexml
titleCMIS configuration
blueriq.cmis.user=xxx
blueriq.cmis.password=xxx
blueriq.cmis.services-url=http://aq-acc:9080/alfresco/cmisatom
blueriq.cmis.repository-id=14f2517f-fb35-4d86-821e-2d0b37929f72
blueriq.cmis.objectType-id=D:br:documentOne
blueriq.cmis.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.authProviderClassName=com.somecompany.plugin.cmis.impl.SomeCustomAuthenticationProvider
UI Expand
title.NET

Open the Web.config

Include Page
_PropertiesFileNet
_PropertiesFileNet
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 Then 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" />

...