Skip to content
This repository has been archived by the owner on Mar 22, 2024. It is now read-only.

Process KDS Report Deployment v0.3.1

Reto Wettstein edited this page Nov 16, 2022 · 1 revision

Deploying the KDS report process plugin to the DSF involves copying the process jar-file and additional (non process) plugin jar-file and configuring environment variable for the business process engine (BPE). Information of fixed issues and new features see Release Notes v0.3.1.

Prerequisites

  • A DSF installation of version 0.9.0 or higher. A link to an installation guide of the DSF can be found in the release notes.

  • The hapi-fhir-client-5.1.0.jar has to be installed as a regular DSF BPE plugin by adding the .jar file to the folder /opt/bpe/plugin:

     wget https://repo1.maven.org/maven2/ca/uhn/hapi/fhir/hapi-fhir-client/5.1.0/hapi-fhir-client-5.1.0.jar
    

    Make sure the file is readable by the bpe user or group, for example by setting the permissions using the commands:

    sudo chmod 440 hapi-fhir-client-5.1.0.jar
    sudo chown root:bpe hapi-fhir-client-5.1.0.jar
    

Deployment

  • Add the mii-dsf-process-kds-report-0.3.1.jar to the DSF BPE folder /opt/bpe/process:

     wget https://github.com/medizininformatik-initiative/mii-dsf-processes/releases/download/v0.3.1/mii-dsf-process-kds-report-0.3.1.jar
    

Make sure the process is readable by the bpe user or group, for example by executing:

```
sudo chmod 440 mii-dsf-process-kds-report-0.3.1.jar
sudo chown root:bpe mii-dsf-process-kds-report-0.3.1.jar
```
  • Modify the process exclude config in /opt/bpe/docker-compose.yml

    • DIC:
    @@ -50,3 +50,3 @@
           ORG_HIGHMED_DSF_BPE_PROCESS_EXCLUDED: |
    -        medizininformatik-initiativede_kdsReportReceive/0.2.0,
    -        medizininformatik-initiativede_kdsReportReceive/0.3.0
    +        medizininformatik-initiativede_kdsReportReceive/0.3.1
    • HRP:
    @@ -50,3 +50,3 @@
           ORG_HIGHMED_DSF_BPE_PROCESS_EXCLUDED: |
    -        medizininformatik-initiativede_kdsReportAutostart/0.2.0,
    -        medizininformatik-initiativede_kdsReportSend/0.2.0,
    -        medizininformatik-initiativede_kdsReportAutostart/0.3.0,
    -        medizininformatik-initiativede_kdsReportSend/0.3.0
    +        medizininformatik-initiativede_kdsReportAutostart/0.3.1,
    +        medizininformatik-initiativede_kdsReportSend/0.3.1

    Additional processes may be listed in your process exclude config.

Configuration

  • The configuration of the KDS report process is described here.

Preparations & Starting the KDS Report Autostart/Send Process

  • How to prepare the HRP DSF FHIR server as well as how to start/stop the KDS report autostart process and to start the KDS report send process at a DIC is described here.
Clone this wiki locally