public function AdminRemoveUsersFromOrg($orgId, $userIds)
 {
     // $orgId : IDType (only one ID)
     // $userIds : IDType or this array (single or multiple request)
     $this->CheckAndSetHeader(__FUNCTION__);
     $reg_args = array();
     if ($orgId == 0) {
         throw new CbgrnSoapFault("002", __FUNCTION__);
     } else {
         $reg_args["orgId"] = intval($orgId);
     }
     $reg_args["userId"] = $this->getRegularArgs($userIds, __FUNCTION__);
     $this->encodeString($reg_args);
     $results = parent::AdminRemoveUsersFromOrg($reg_args);
     $this->methodClose();
     return $this->decodeString($results);
 }