SessionSettings Object



 
The SessionSettings object provides information about the current session.


Members Table

Remarks
    This object is available through the object SiteCash. Use the SessionSettings object to receive information about the current session and the user.
    Note that session settings are only provided by some payment devices like smartcards.

    Note that the path of a file using SiteKiosk objects must be allowed in the
    SiteKiosk configuration (Security -> Access -> URL's With Script Permission)
    if it is not a browser skin file.
Examples
    The following example shows the last name of the current user.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Plugins("SiteCash").SessionSettings.Lastname);
    </SCRIPT>
    

Applies to
    SiteKiosk v5.0 (and later versions).

Back to top