Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Open the Canvas Studio Resource JAR file in the Canvas Studio WAR deployed in the app server:

    • ..\expertctstudio.war\WEB-INF\lib\expertctstudioResource.jar\

  2. Open the systempreferences.properties file.

    1. Mention the ARX application URL in ARX_URL:

      Code Block
      languagetext
      # Sample ARX url
      ARX_URL = http://nxtdevlnx38.intellectdesign.com:20028/ARXAL/rest/ArmorSOAServices
    2. Mention the Sigma URL in APPLICATION_URL:

      Code Block
      languagetext
      APPLICATION_URL = http://<IP or hostname>:<port>/sigma
      # Sample Sigma URL, http://localhost:9080/sigma
  3. Open the ctstudiosecurityconfig.properties file.

    1. Check that ARXCookieBasedAuthenticationProvider class filename is uncommented. This is the default authentication provider that is to be used during log-on, logout or re-authentication purposes.

      Code Block
      languagetext
      # AUTH_SERV_PROV_CLASS = com.canvas.provider.authentication
      # AUTH_SERV_PROV_CLASS = com.intellectdesign.canvas.authentication.providers.CTAuthenticationProvider
      
      # If ARX 16 version is used, then update as follows:
      AUTH_SERV_PROV_CLASS=com.intellectdesign.canvas.provider.auth.arx.arx_16.ARXCookieBasedAuthenticationProvider
      
      # If ARX 18 version is used, then update as follows:
      AUTH_SERV_PROV_CLASS=com.intellectdesign.canvas.provider.auth.arx.arx_18.ARXCookieBasedAuthenticationProvider
  4. Open the Sigmaimpleclassconfig.properties file.

    1. Check that ArxRoleBasedViewEntitlement class filename is uncommented.

      Code Block
      languagetext
      # VIEW_ENTITLEMENT_CLASS = com.intellectdesign.canvas.entitlement.CanvasViewEntitlement
      VIEW_ENTITLEMENT_CLASS=com.intellectdesign.canvas.provider.auth.entitlement.ArxRoleBasedViewEntitlement
  5. Note that the default user role Canvas Studio is CTSTUDIOGRP. However, you can define custom user role, refer <> Creating Roles for more information.

  6. Access Canvas Studio by entering the following URL in the browser’s address bar:

    Code Block
    languagetext
    http://<IP or hostname>:<port>/expertctstudio/home.jsp
    # Sample Canvas Studio URL, http://localhost:9081/expertctstudio/home.jsp

...