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 13 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

Add the artifact with groupId com.blueriq and artifactId blueriq-component-cmis-client as a dependency to your Blueriq runtime POM file.

In order to use this component, the cmis-client profile must be active. More information on how to configure the application using Spring Profiles can be found here : Application configuration with Spring Profiles

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

 

 

 

Configuration

The following properties in the application-cmis-client.properties are used to configure the cmis component:

CMIS configuration
# the user to connect to CMIS
blueriq.cmis.user=
# the password to connect to CMIS
blueriq.cmis.password=
# the URL of the CMIS service
blueriq.cmis.services-url=
blueriq.cmis.repository-id=
blueriq.cmis.object-type-id=
blueriq.cmis.binding-type=


# JWT authentication provider
blueriq.cmis.authProviderClassName=com.blueriq.component.cmis.client.impl.jwt.JwtAuthenticationProvider


# JWT authentication provider properties
## URL pointing to key store containing RSA private/public keys for JWT signing
blueriq.cmis.authProviderConfiguration.jwt.ks.fileUrl=file:///D:/some_dir/jwt/keystore.jks
## key store password
blueriq.cmis.authProviderConfiguration.jwt.ks.password=
## alias of key that Blueriq should use for JWT signing
blueriq.cmis.authProviderConfiguration.jwt.ks.blueriqKeyAlias=
## password for key that Blueriq should use for JWT signing
blueriq.cmis.authProviderConfiguration.jwt.ks.blueriqKeyPassword=
## standard 'issuer' claim to put in Json Web token
blueriq.cmis.authProviderConfiguration.jwt.claims.iss=
## standard 'audience' claim to put in Json Web token
blueriq.cmis.authProviderConfiguration.jwt.claims.aud=
## standard 'subject' claim to put in Json Web token
blueriq.cmis.authProviderConfiguration.jwt.claims.sub=
## custom claim to put in Json Web token
blueriq.cmis.authProviderConfiguration.jwt.claims.idp=
## JWT claim name to put the Blueriq user id in
blueriq.cmis.authProviderConfiguration.jwt.blueriqUser.id.claimName=
## JWT claim name to put the CMIS connector id in
blueriq.cmis.authProviderConfiguration.jwt.cmisConnector.id.claimName=

Open the

Unable to render {include} The included page could not be found.
file and place the following line between the configSections tags. 

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

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

 

CMIS connection configuration
<cmis user="xxx"
          password="xxx"
          serviceUrl="http://localhost: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