Changing customization settings

Screen-settling customization settings can be changed using the connection editor in the ZIETrans Toolkit. To change the settings, typically in the main.hco file for a connection named main, open the ZIETrans Projects view, expand Connections, and select main (default).

Five of the settings can be changed on the Screen Handling tab of the connection editor:
  • default.delayInterval
  • default.delayStart
  • default.appletDelayInterval
  • default.blankScreen

    See Table 1.

  • default.blankScreenKeys

    See Table 1.

All of the settings described above can be configured on the Source tab. In the <classSettings> tag, the screen-settling settings are in the com.ibm.hats.common.NextScreenSettings class.
You can add or modify the settings as needed to configure screen-settling performance. The default connection settings are:
<classSettings>
    ...
   <class name="com.ibm.hats.common.NextScreenSettings">
      <setting name="default.delayInterval" value="1200"/>
      <setting name="default.appletDelayInterval" value="400"/>
      <setting name="default.blankScreen" value="timeout"/>
      <setting name="default.delayStart" value="2000"/>
   </class>
</classSettings>
The following example updates one setting and adds another:
<classSettings>
    ...
   <class name="com.ibm.hats.common.NextScreenSettings">
      <setting name="default.delayInterval" value="1200"/>
      <setting name="default.appletDelayInterval" value="400"/>
      <setting name="default.blankScreen" value="timeout"/>
      <setting name="default.delayStart" value="1500"/>
      <setting name="nextScreenClass"
              value="com.ibm.hats.runtime.TimingNextScreenBean"/>
   </class>
</classSettings>