- If the latest release revision is 19.1.7.11 19679 and above, refer to the following steps:
Perform the following steps to use the CT release as-is without the need to update the CanvasApplicationContext.json file in the CTResources.jar. - Update web.xml in Canvas Studio WAR
File Location: ...\webapps\ctmodelhouse\WEB-INF\web.xml The following snippet provides the sample values of the necessary elements and attributes that are to be configured within web.xml. Code Block |
---|
<context-param>
<param-name>appId</param-name>
<param-value>MODELHOUSE</param-value>
</context-param> |
Note |
---|
The param name should remain unchanged. Only "appId" should be used. |
If the context-param attribute is already present in the web.xml for a different param-name, the new context-param attribute has to be added after that to configure the value of appId. Refer to the following snippet for sample values of the necessary elements and attributes that are to be configured within web.xml. Code Block |
---|
<context-param>
<param-name>ModelHouseInitializeBundle</param-name>
<param-value>MyImplementation</param-value>
</context-param>
<context-param>
<param-name>appId</param-name>
<param-value>MODELHOUSE</param-value>
</context-param> |
|