public boolean addServerRoles(String[] serverRolestoAdd, String serverRoleType)
     throws java.lang.Exception {
   boolean status = false;
   try {
     status = stub.addServerRoles(serverRolestoAdd, serverRoleType);
   } catch (RemoteException e) {
     this.handleException(e.getMessage(), e);
   } catch (AddServerRolesServerRolesExceptionException e) {
     this.handleException(e.getMessage(), e);
   }
   return status;
 }