Session


CreateMSNNotification

Create MSN notification object on server

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