Versions Compared

Key

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

...

The DCM Lists Publisher Component provides the ability to publish task and case events to the DCM Lists Service (via a message queue). The DCM List Client Component provides the ability to query the DCM Lists Service for Task List Rows and Work List Rows. A schematic overview can be found below.


Image RemovedImage Added

Requirements

The components need the DCM Lists Service. See configuring the DCM Lists Service to install it. Additionally, these components needs a connection with the RabbitMQ message broker.

...

Code Block
languagetext
titleapplication-dcm-lists-client.properties
blueriq.dcm.lists-client.url = http://yourhost:yourport/
blueriq.dcm.lists-client.username = yourusername
blueriq.dcm.lists-client.password = yourpassword

RabbitMQ connection

Code Block
languagetext
titleapplication-dcm-lists-client.properties
blueriq.dcm.lists-client.rabbitmq.host = yourrabbithost.local
blueriq.dcm.lists-client.rabbitmq.port = 5672
blueriq.dcm.lists-client.rabbitmq.username = yourRabbitUsername
blueriq.dcm.lists-client.rabbitmq.password = yourRabbitPassword
blueriq.dcm.lists-client.rabbitmq.virtualHost = /
blueriq.dcm.lists-client.rabbitmq.queueNames = yourRabbitQueue

Using a reverse proxy server

...

Note

Please note that you need to add the following configuration. There are no default value for these properties, and the Runtime does not run without setting these properties.

RabbitMQ connection

Code Block
languagetext
titleapplication-dcm-lists-publisher.properties
blueriq.dcm.lists-publisher.rabbitmq.host = yourrabbithost.local
blueriq.dcm.lists-publisher.rabbitmq.port = 5672
blueriq.dcm.lists-publisher.rabbitmq.username = yourRabbitUsername
blueriq.dcm.lists-publisher.rabbitmq.password = yourRabbitPassword
blueriq.dcm.lists-publisher.rabbitmq.virtualHost = /
blueriq.dcm.lists-publisher.rabbitmq.exchangeName = processEvents

...