Journey Workspaces FAQ - Deployment

  WorkspacesThis topic relates to Journey Workspaces   |     Platform Developer   |  18.11This feature was introduced in the 18.11 release22.04This feature was updated in the 22.04 release

Note

Some of the text and images below may not match what you see in your Journey Workspaces app. This is because the features described are based on a default Journey Workspaces configuration, and your Workspaces app may be configured differently; for example, with your company's branding, with fields for other information, or with a custom layout. Nevertheless, the features described work the same way in every Workspaces app.

How do I promote Workspaces from lower to higher Journey Manager environments?

Promoting Workspaces between environments is achieved by exporting the Workspaces archive from one environment and importing it into another environment. This transfers the definitions, pages, properties, resources and submission forms associated with the portal.

Note

Before importing the Workspaces archive to your environment, make sure you have already had a fresh installation of Workspaces in that environment.

There is an issue in Workspaces 18.11.3 and earlier releases that prevents you from exporting your Workspaces archive. In this case, to promote your Workspaces portal, install Workspaces in your environment then manually copy the Workspaces assets like properties, pages and resources which are to be replaced.

Starting with Workspaces 20.05, the Workspaces client application is deployed as an Open UX form in Journey Manager. To promote the Workspaces client application from a lower environment to a higher one, export the Workspaces Open UX form (which includes all Workspaces configuration details) and import it into the target environment. No further configuration is required in the target environment.

How do I import the Workspaces WAR file through the Journey Manager administration console?

The Workspaces WAR file is installed using the Journey Manager administration console. Login to Manager then select Forms > Form Spaces and click Import WAR. For more information about importing WAR files, see Import a Form Space as a WAR archive.

Note

The Import WAR button is disabled in multi-node Journey Manager environments. To install the WAR file, contact cloud hosting support or your infra support to manually deploy the WAR file from the Journey server.

Starting with Workspaces 20.05, the Workspaces API (form space) WAR file comes packaged with the Journey Manager installer.

How do I deploy two Workspaces portals in one Journey Manager environment?

To install multiple copies of Workspaces in one Journey Manager environment, you need to change the name of the Workspaces application.

For example, to change the name from Workspaces to Temenos, you would need to make the following changes to the contents of the Workspaces WAR file.

  • \WEB-INF\jboss-web.xml: Change the context root.

    <jboss-web>
        <context-root>temenos</context-root>
    </jboss-web>
  • \Index.htm: Change the content URL.

    <html>
        <head>
            <meta http-equiv="Refresh" content="0;URL=/temenos/secure/index.html">
        </head>
    </html>
  • \WEB-INF\classes\db-config1.xml: Change the portal name, context path and WAR file name.

    <portal name="Temenos">
    <context-path>http://localhost:9080/temenos/</context-path>
    <description><![CDATA[Temenos Workspaces]]></description>
    <version>19.5.0</version>
    <war-file-name>tm-temenos.war</war-file-name>
  • \META-INF\maven\com.avoka.tm\tm-workspaces-war\pom.xml

    <artifactId>tm-temenos-war</artifactId>
    <name>TM: Temenos WAR</name>
    <packaging>war</packaging>
    
    <properties>
        <portal>temenos</portal>
        <portal.project.name>Temenos Workspaces</portal.project.name>
        <portal.project.description>Temenos Workspaces</portal.project.description>
        <portal.war.file.name>tm-temenos.war</portal.war.file.name>
        <project.context>temenos</project.context>
    </properties>
    
    <build>
    <finalName>tm-temenos</finalName>
  • \META-INF\maven\com.avoka.tm\tm-workspaces-war\pom.properties

    groupId=com.avoka.tm
    artifactId=tm-temenos-war
  • \META-INF\MANIFEST.MF

    Specification-Title: TM: Temenos WAR
    Implementation-Title: TM: Temenos WAR
Note

Rename the WAR file as well as tm-temenos.war.

Once the above changes are done, deploy the new WAR file in the Journey Manager environment.

Can Workspaces 19.05/19.11 and Workspaces 20.05 be deployed to the same Journey Manager instance?

Yes, you can have multiple different versions of Workspaces in the same instance of Journey Manager. When setting up Workspaces 19.05/19.11, make sure you select the Workspaces WAR file compatible with your Journey Manager version.

Can I have multiple Workspaces 20.05 Open UX forms in a single Journey Manager instance?

Yes, you can have multiple Workspaces 20.05 Open UX forms in a single Journey Manager instance.

To deploy Workspaces with a different name / version, edit the transact-config.json file.

{
    "buildDir": "build",
    "domainModelFile": "transact-schema.json",
    "appDef": {
        "name": "WorkspacesX",
        "formCode": "workspacesx",
        "clientCode": "workspaces",
        "transactInsights": false,
        "formVersion": {
            "versionNumber": "20.05"
        }
    }
}

Can I deploy the Workspaces 19.11 portal in a TJM 20.05, 20.11, or 21.05 environment?

Caution

The 19.11 release reached end-of-life in late 2022 at which time official support for this release ended.

The short answer is "yes". However, we don't recommend this mixed-release deployment, and there are a few things you should know before proceeding down this path.

  • A key step in any Workspaces deployment is importing a Workspaces WAR file into your TJM instance. Prior to the 20.05 release, the Workspaces WAR file contained both the Workspaces REST API, which provides necessary integration with Journey Manager, and the Workspaces client application. The 20.05 release removed the client application from the Workspaces WAR file, instead deploying the client application as an Open UX form using a command-line interface tool, and leaving just the Workspaces REST API in the Workspaces WAR file.
  • When upgrading a TJM 19.11 instance to a 20.05 or later release, we recommend you migrate your Workspaces application to an Open UX form. However, if you want to continue to use a non-Open UX Workspaces application, you can download and import the Workspaces 19.11 WAR file into a TJM 20.05 or later instance. If you do this, the 19.11 version of the Workspaces REST API is installed into your TJM instance, replacing any existing later version of this API. Of course, this means you won't have access to any improvements introduced in a later version of the Workspaces REST API.
  • This mixed-release deployment has not been tested for production deployment, so there is no guarantee it will work seamlessly.

Can I deploy the Workspaces 19.11 portal in a TJM 21.11 or later environment?

No. TJM 21.11 introduces changes to the Workspaces REST API that are incompatible with earlier Workspaces releases. To learn more, see Workspaces release compatibility > Breaking changes in TJM 21.11.