- Update the ASEE Flow Core Libraries
- Update Optional ASEE Flow Libraries
- Maintain Process Engine Configuration
- Maintain Process Applications
- Update Web Applications
$*_VERSION refer to the current version and the new versions of the artifacts.
Updated Tomcat VersionThe pre-built ASEE Flow 7.4 distribution ships with Tomcat 8.0.26, whereas 7.3 comes with Tomcat 7.0.62. ASEE Flow 7.4 is supported on all Tomcat 6/7/8 versions such that a Tomcat update is not required when migrating from 7.3 to 7.4.Should you want to update Tomcat along with ASEE Flow, perform the following steps either before or after updating ASEE Flow:
- Copy all your ASEE Flow-related libraries from
$TOMCAT_HOME/libto the new Tomcat server’slib-directory. - Apply all modifications to Tomcat configuration files such as
server.xml/bpm-platform.xmlto the files located in the new Tomcat server’s directory. - Undeploy all process applications and copy them to the new Tomcat server’s directory for redeployment.
1. Update the ASEE Flow Core Libraries
Replace the following libraries in the folder$TOMCAT_HOME/lib/ with their new versions from the folder $TOMCAT_DISTRIBUTION/lib/:
camunda-engine-$PLATFORM_VERSION.jarcamunda-bpmn-model-$PLATFORM_VERSION.jarcamunda-cmmn-model-$PLATFORM_VERSION.jarcamunda-xml-model-$PLATFORM_VERSION.jar
camunda-engine-dmn-$PLATFORM_VERSION.jarcamunda-engine-feel-api-$PLATFORM_VERSION.jarcamunda-engine-feel-juel-$PLATFORM_VERSION.jarcamunda-dmn-model-$PLATFORM_VERSION.jarcamunda-commons-logging-$COMMONS_VERSION.jarcamunda-commons-typed-values-$COMMONS_VERSION.jarcamunda-commons-utils-$COMMONS_VERSION.jar
slf4j-api-$SLF4J_VERSION.jarslf4j-jdk14-$SLF4J_VERSION.jar
2. Update Optional ASEE Flow Libraries
In addition to the core libraries, there may be optional artifacts in$TOMCAT_HOME/lib/ for LDAP integration, ASEE Flow Connect, ASEE Flow Spin, and Groovy scripting. If you use any of these extensions, the following update steps apply:
LDAP Integration
Copy the following libraries from$TOMCAT_DISTRIBUTION/lib to the folder $TOMCAT_HOME/lib/, if present:
camunda-identity-ldap-$PLATFORM_VERSION.jar
ASEE Flow Connect
Copy the following libraries from$TOMCAT_DISTRIBUTION/lib to the folder $TOMCAT_HOME/lib/, if present:
camunda-engine-plugin-connect-$PLATFORM_VERSION.jar
ASEE Flow Spin
Copy the following libraries from$TOMCAT_DISTRIBUTION/lib to the folder $TOMCAT_HOME/lib/, if present:
camunda-spin-dataformat-all-$SPIN_VERSION.jarcamunda-spin-core-$SPIN_VERSION.jarcamunda-engine-plugin-spin-$PLATFORM_VERSION.jar
Groovy Scripting
Copy the following libraries from$TOMCAT_DISTRIBUTION/lib to the folder $TOMCAT_HOME/lib/, if present:
groovy-all-$GROOVY_VERSION.jar
3. Maintain Process Engine Configuration
This section describes changes in the engine’s default behavior. While the change is reasonable, your implementation may rely on the previous default behavior. Thus, the previous behavior can be restored for shared process engines by explicitly setting a configuration option.Task Query Expressions
As of 7.4, the default handling of expressions submitted as parameters of task queries has changed. Passing EL expressions in a task query enables execution of arbitrary code when the query is evaluated. The process engine no longer evaluates these expressions by default and throws an exception instead. This behavior can be toggled in the process engine configuration using the propertiesenableExpressionsInAdhocQueries (default false) and enableExpressionsInStoredQueries (default true). To restore the engine’s previous behavior, set both flags to true. See the user guide on security considerations for custom code for details.
This is already the default for ASEE Flow versions after and including 7.3.3 and 7.2.8.
User Operation Log
The behavior of the user operation log has changed, so that operations are only logged if they are performed in the context of a logged in user. This behavior can be toggled in the process engine configuration using the propertyrestrictUserOperationLogToAuthenticatedUsers (default true). To restore the engine’s prior behavior, i.e., to write log entries regardless of user context, set the flag to false.
Furthermore, with 7.4 task events are only logged when they occur in the context of a logged in user. Task events are accessible via the deprecated API TaskService#getTaskEvents. If you rely on this API method, the previous behavior can be restored by setting the flag restrictUserOperationLogToAuthenticatedUsers to false.
4. Maintain Process Applications
This section describes changes in behavior of API methods that your process applications may rely on.CMMN Model API
As a consequence of supporting CMMN 1.1, the CMMN model API is now based on the schema of CMMN 1.1. This leads to limitations when editing CMMN 1.0 models. We therefore recommend to migrate your CMMN 1.0 models to CMMN 1.1.5. Update Web Applications
Update REST API
The following steps are required to update the ASEE Flow REST API on a Tomcat instance:- Undeploy an existing web application with a name like
camunda-engine-rest - Download the REST API web application archive from our Artifact Repository Alternatively, switch to the private repository for the enterprise version (User and password from license required). Choose the correct version named
$PLATFORM_VERSION/camunda-engine-rest-$PLATFORM_VERSION-tomcat.war. - Deploy the web application archive to your Tomcat instance.
Update Cockpit, Tasklist, and Admin
The following steps are required to update the ASEE Flow web applications Cockpit, Tasklist, and Admin on a Tomcat instance:- Undeploy an existing web application with a name like
camunda-webapp - Download the ASEE Flow web application archive from our Artifact Repository). Alternatively, switch to the private repository for the enterprise version (User and password from license required). Choose the correct version named
$PLATFORM_VERSION/camunda-webapp-tomcat-$PLATFORM_VERSION.war. - Deploy the web application archive to your Tomcat instance.
LDAP Entity CachingIt is possible to enable entity caching for Hypertext Application Language (HAL) requests that the ASEE Flow web applications make. This can be especially useful when you use ASEE Flow in combination with LDAP. To activate caching, the ASEE Flow webapp artifact has to be modified and the pre-built application cannot be used as is. See the REST Api Documentation for details.