Custom Callouts

This configuration parameter specifies custom callout handlers, which allow you to callout, or inject, custom specifications in WCC applications.

For information about callout handlers in general, see the “WCC Public Methods” chapter in the TIBCO Workspace Components Developer Guide. And for information about specifying callout handlers using this parameter, see the “Callout Handler Configuration” section in the same chapter.

Procedure

  1. Open the config.xml file.

    For information about how this file should be opened (i.e., via the Configuration Administrator or via the file system), see Introduction.

  2. Locate the customCallout record in the config.xml file. For example:
    <record jsxid="customCallout" type="Workspace">
        <Classes>
           <!--<Class class="com.tibco.wcc.workspace.CalloutHandler"/>-->
        </Classes>
    </record>
  3. Specify a <Class> element for each callout handler to implement. This must include the fully qualified name of the callout handler. For example:
    <record jsxid="customCallout" type="Workspace">
        <Classes>
            <Class class="com.tibco.wcc.accounts.CalloutHandler"/>
        </Classes>
    </record>
  4. Save and close the config.xml file.