Providing Process Libraries
Process libraries provide an easy way to use process models for multiple users. They allow know-how to be bundled, stored centrally and to be reused in a targeted manner.
To provide process libraries the following steps are required:
- Installing the process library: Place the process library as
ZIPorjarfile underServer\X4DB\X4modules. Configuring and providing the process library: Configure and provide the process library on the Server via the file
modules.xml(Server\X4DB\X4modules\).Sample configuration via the modules.xml
XML<?xml version="1.0" encoding="UTF-8"?> <modules> <global project="MyFirstLibrary" jar="MyFirstLibrary.zip"/> <local userId="1" project="MySecondLibrary" jar="MyFirstLibrary.jar"/> </modules>Explanation:
Element Description globalThe library is provided globally and thus available for all users localThe library is provided locally and thus available only for a certain user userIdUser who can access the library projectProject name; The project name must correspond to the project name of the process library.
jarReference to the ZIPorjarfile of the process library