Session


Release

Release Session object on server

Call Method
    Release () throw Exception
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();
  }