Map of Session attributes.
Here's some example code to add Session attribute:
var requestObj = voltMX.getRequestObject();
requestObj.getSession().attributes['Session1']='S1Val';
requestObj.update();
Map of Session cookies.
Here's some example code to add Session cookie:
var requestObj = voltMX.getRequestObject();
requestObj.getSession().cookies['Cookie1']='C1Val';
requestObj.update();
Gets or set the attributes of the Session
Gets or set the cookies of the Session
Generated using TypeDoc
Session for the Request