Siebel Interactive Designer Administration Guide > Working with Deployed Interactive Designer Applications >

Running Interactive Designer Applications in Stand-Alone or Standard Mode


You can run your application in either stand-alone mode or in standard mode.

To run your application in stand-alone mode

  1. Set the following variables in app_config.js:

    var APP_LOAD_UI_ON_STARTUP = true;
    var APP_SIEBEL_INTEGRATION_ON = false;

  2. Connect to your application using a URL that opens home.htm.

To run your application in standard mode

  1. Set the following variables in app_config.js:

    var APP_LOAD_UI_ON_STARTUP = false;
    var APP_SIEBEL_INTEGRATION_ON = true;
    var APP_SESSION_LENGTH = 15; (Set this number to equal the web server setting for the number of minutes before the session times out.)
    var APP_DISPLAY_AREA_FRAME = ISSStr+".displayArea"(Set displayArea to your particular display area.)

  2. Connect to your application using showCDA.

    For more information, see showCDA in Siebel Interactive Designer API Reference.

Siebel Interactive Designer Administration Guide