Session


Session

Constructor

Call Method
    Session (String ID) throw Exception
Parameters
   ID
         Session ID
JAVA Example
  Personalizer pers = null;
  Session sess = null;
  //Create Session object using saved Session object ID (see GetID method)
  //It is supposed the object was not released and exists on the server
      String sID = "586e239512cc4630919f651f2e568fb2" ;
      sess = new Session(sID);
      ...;
      sess.Release();
  }
  catch(Exception e){
      //Print exception message e.Message
      System.out.println(e.Message);
      sess.Release();
  }