Personalizer


CreateSession

User authorization and session object creation

Call Method
   Session CreateSession (String LogonName, String Password) throw Exception
Parameters
   LogonName
         Logon Name
   Password
         Password
Return value
         Created Session object
JAVA Example
  Personalizer pers = null;
  Session sess = null;
  try{
      //Create personalizer object and Session object
      pers = new Personalizer();
      sess = pers.CreateSession("LogonName", "Password");
      ...;
      sess.Release();
  }
  catch(Exception e){
      //Print exception message e.Message
      System.out.println(e.Message);
      sess.Release();
  }