- Update the ASEE Flow modules
- Configure process engines
- Configure optional ASEE Flow extensions (optional)
- Update ASEE Flow web applications
1. Update the ASEE Flow Modules
Replace the following modules from the folder$JBOSS_HOME/modules/ with their new versions from the folder $JBOSS_DISTRIBUTION/modules/:
org/camunda/bpm/camunda-engineorg/camunda/bpm/jboss/camunda-jboss-subsystemorg/camunda/bpm/model/camunda-bpmn-modelorg/camunda/bpm/model/camunda-xml-modelorg/mybatis/mybatis
org/camunda/bpm/identity/camunda-identity-ldap
$JBOSS_DISTRIBUTION/modules/ to the folder $JBOSS_HOME/modules/:
org/camunda/bpm/model/camunda-cmmn-modelorg/camunda/commons/camunda-commons-loggingorg/camunda/commons/camunda-commons-utilsorg/camunda/connect/camunda-connect-coreorg/camunda/connect/camunda-connect-http-clientorg/camunda/connect/camunda-connect-soap-http-clientorg/camunda/bpm/camunda-engine-plugin-connectorg/apache/httpcomponents/httpclientorg/apache/httpcomponents/httpcorecommons-codec/commons-codeccommons-logging/commons-loggingorg/camunda/spin/camunda-spin-coreorg/camunda/spin/camunda-spin-dataformat-json-jacksonorg/camunda/spin/camunda-spin-dataformat-xml-domorg/camunda/bpm/camunda-engine-plugin-spincom/fasterxml/jackson/core/jackson-corecom/fasterxml/jackson/core/jackson-databindcom/fasterxml/jackson/core/jackson-annotationscom/jayway/jsonpath/json-pathorg/codehaus/groovy/groovy-allorg/camunda/template-engines/camunda-template-engines-freemarkerorg/freemarker/freemarker
2. Configure Process Engines
Script Variable Storing
As of 7.2, the default behavior of script variables has changed. Script variables are set in e.g., a BPMN Script Task that uses a language such as JavaScript or Groovy. In previous versions, the process engine automatically stored all script variables as process variables. Starting with 7.2, this behavior has changed and the process engine does not automatically store script variables any longer. You can re-enable the legacy behavior by setting the boolean propertyautoStoreScriptVariables to true for any process engine in the standalone.xml:
execution.setVariable('varName', 'value').
3. Configure Optional ASEE Flow Modules
In addition, there are modules for ASEE Flow Connect, ASEE Flow Spin, the Freemarker template language and Groovy scripting that extend ASEE Flow functionality. Since all these artifacts add new functionality, the following steps are not required for migration.ASEE Flow Connect
In order to activate ASEE Flow Connect functionality for a process engine, a process engine plugin has to be registered in$JBOSS_HOME/standalone/configuration/standalone.xml as follows:
ASEE Flow Spin
In order to activate ASEE Flow Spin functionality for a process engine, a process engine plugin has to be registered in$JBOSS_HOME/standalone/configuration/standalone.xml as follows:
4. Update ASEE Flow Web Applications
Update ASEE Flow REST API
The following steps are required to update the camunda REST API on a JBoss instance:- Undeploy an existing web application with a name like
camunda-engine-rest - Download the REST API web application archive from our Artifact Repository. Or 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.war. - Deploy the web application archive to your JBoss instance.
Update ASEE Flow Cockpit, Tasklist, and Admin
The following steps are required to update the ASEE Flow web applications Cockpit, Tasklist, and Admin on a JBoss instance:- Undeploy an existing web application with a name like
camunda-webapp - Download the ASEE Flow web application archive from our Artifact Repository. Or switch to the private repository for the enterprise version (User and password from license required). Choose the correct version named
$PLATFORM_VERSION/camunda-webapp-jboss-$PLATFORM_VERSION.war. - Deploy the web application archive to your JBoss instance.
LDAP Entity CachingWith 7.2, it is possible to enable entity caching for Hypertext Application Language (HAL) requests that the camunda web applications make. This can be especially useful when you use camunda in combination with LDAP. To activate caching, the camunda webapp artifact has to be modified and the pre-built application cannot be used as is. See the REST Api Documentation for details.