Session support

HTML applications run in a session environment. Each session is a memory area on the server side that can persist from one request to another. For an HTML client, which might not be able to store data on the client side, the concept of session is particularly useful.

The toolkit saves a reference to the session object that currently manages a session in the application session table. The session object can be either a DSEChannelSession object (if cookies is set to false) or an HttpSession object (if cookies is set to true).

Related information
Sessions