Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

When a value is set for the keep alive interval setting, the browser can will keep the server job from timing out by sending a keep-alive request every so often.  The interval is specified in seconds.  It is reset every time a new screen is rendered.  The keep alive interval will NOT be in effect if the Client Side Timeout flag is true.  To use the keep alive interval setting, you must set client side timeout monitoring to false.

This value should be set to an interval slightly shorter than the server session timeout. For example, if the session timeout is 1 hour, then sending a request every 55 minutes will keep the session active. Using a shorter interval would result in unnecessary requests.

Example:

Code Block
javascript
javascript

// Send keep-alive request every 1055 minutes
pui["client side timeout"] = false;
pui["keep alive interval"] = 55 600;* 60; // Value is specified in seconds.

Where do you save this configuration option? Here.