public void FetchTests()
        {
            List <ConfigurationValue> oValues;
            WebCallResult             res = ConfigurationValue.GetConfigurationValues(_connectionServer, out oValues);

            Assert.IsTrue(res.Success, "Failed to fetch list of all configuraiton values");

            Assert.IsTrue(oValues.Count > 0, "No configuration values returned from system fetch");

            string strFullName = oValues[0].FullName;

            try
            {
                ConfigurationValue oValue = new ConfigurationValue(_connectionServer, strFullName);
                Console.WriteLine(oValue.ToString());
                Console.WriteLine(oValue.DumpAllProps());
            }
            catch (Exception ex)
            {
                Assert.IsTrue(false, "Failed to construct Configuraiton value from full name:" + ex);
            }
        }