IBM WebSphere Multichannel Bank Transformation Toolkit, Version 7.1

Setting session management properties

About this task

The Branch Transformation Toolkit provides a bttsm.properties file for you to define the session management behaviors. Below is a sample of the bttsm.properties file:
SessionPersistance=true
Note that the toolkit sessions are HTTP sessions, so the HTTP session settings in client-side browsers and HTTP servers might override the settings you made in bttsm.properties.

If session persistence is set to true, session management will be a transparent component. It will store all information into HttpSession Object. User can enable session persistence in WAS to run the persistence sessions.

BTT 4.x Style session management properties definition is still supported, user can define the session persistence and other properties at initialization clause of dse.ini file.
<initialization>
  ...
  <field id="sessionPersistence" value="true"/> (default is "false")
  ...
</initialization> 


Feedback