I am working on an application that has an object called SessionContext, this object has session variables that are sometimes persistent, inside the application (I did not do it myself) there are many get and Set for example:
var ctx = new SessionContext;
var NumberTicket = ctx.get("NumberTicket");
I can access session variables through its "Keyname" which is the one that is in quotes, I can not access the definition of the object because it is in the application's Kernel, here comes my question:
Is there any way to print all the possible Keynames that store variables within that object? through the application I am able to send the contents of a variable to a flat file, such as an XML. I would like to know all the session variables stored by that object