Modifying the View Distributor Application’s wccConfig.xml

Procedure

  1. Open the following file with an editor:

    StudioHome\wcc\version\JSXAPPS\wccViewDistribtor\wccConfig.xml

    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 name attribute in the appModelName element:
    <record jsxid="wcc" type="wcc">
    <appClass class="com.tibco.wcc.wccViewDistributor.Application"/>
       <appRoot name=""/>
       <mainPrototype path="JSXAPPS/wccViewDistributor/application/prototypes/appMain.xml"/>
       <appModelName name="workspace" />
       <resources>
          <jss copyFromNamespace="first" alwaysLoad="false" />
          <config copyFromNamespace="first" />
       </resources>
    </record>
  3. Modify the value in the name 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:
    <record jsxid="wcc" type="wcc">
    <appClass class="com.tibco.wcc.wccViewDistributor.Application"/>
       <appRoot name=""/>
       <mainPrototype path="JSXAPPS/wccViewDistributor/application/prototypes/appMain.xml"/>
          <appModelName name="accounts" />
       <resources>
          <jss copyFromNamespace="first" alwaysLoad="false" />
          <config copyFromNamespace="first" />
       </resources>
    </record>
  4. Save and close the wccConfig.xml file.