Modifying the View Distributor Application’s Launch Fragment

Procedure

  1. Open the following file with an editor:

    StudioHome\wcc\version\wccViewDistributor.html

    where:

    • StudioHome is the directory in which TIBCO Business Studio was installed.
    • version is the version number of WCC that was installed with TIBCO Business Studio.
  2. Locate the jsxappns attribute in the Script element (near the bottom of the file):
    <script type="text/javascript" src="JSX/js/JSX30.js"
       jsxappns="workspace" jsxapppath="JSXAPPS/wccViewDistributor"
       wccapppath="JSXAPPS/wccViewDistributor" wccloadorder="1" >
    </script>
  3. Modify the value in the jsxappns attribute to fit the name of your custom WCC application. For example, if your custom application’s name is “accounts”, it should appear as follows:
    <script type="text/javascript" src="JSX/js/JSX30.js"
       jsxappns="accounts" jsxapppath="JSXAPPS/wccViewDistributor"
       wccapppath="JSXAPPS/wccViewDistributor" wccloadorder="1" >
    </script>
  4. Save and close the wccViewDistributor.html file.