Session


CreateNumPagerNotification

Create NumPager notification object on server

Call Method
   NumPager CreateNumPagerNotification () throw Exception
Return value
         NumPager 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 NumPager Notification object
      NumPager oNumPager = sess.CreateNumPagerNotification();
      ...;
      //Release NumPager Notification object
      oNumPager.Release();
      sess.Release();
  }
  catch(Exception e){
      //Print exception message e.Message
      System.out.println(e.Message);
      sess.Release();
  }