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
ZIP
orjar
file 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 global
The library is provided globally and thus available for all users local
The library is provided locally and thus available only for a certain user userId
User who can access the library project
Project name; The project name must correspond to the project name of the process library.
jar
Reference to the ZIP
orjar
file of the process library