public int CheckEnterWorldKuaFuSign(string worldRoleID, string token, out string signKey, out string[] ips, out int[] ports)
        {
            signKey = null;
            ips     = null;
            ports   = null;
            IKuaFuWorld kuaFuService = this.GetKuaFuService(false);

            if (null != kuaFuService)
            {
                try
                {
                    return(kuaFuService.CheckEnterWorldKuaFuSign(worldRoleID, token, out signKey, out ips, out ports));
                }
                catch (Exception ex)
                {
                    this.ResetKuaFuService();
                }
            }
            return(-11000);
        }