Exemple #1
0
        public bool Ping()  // bdr
        {
            bool rtn = false;

            try
            {
                if (IsConnectionEnabled)
                {
                    System.Diagnostics.Debug.WriteLine("QMgr  - ICPxy.Ping"); // bdr
                    rtn = myXmlRpcProxy.Ping();
                }
            }
            catch (Exception ex)
            {
                // Log the details of the exception
                LogException(ex, "Ping");
            }

            return(rtn);
        }