protected void btnGo_Click(Object Sender, EventArgs e)
        {
            boolVMFound = false;
            Response.Write(DateTime.Now.ToString() + "<br/>");

            Variables oVariable = new Variables(999);

            System.Net.NetworkCredential oCredentials = new System.Net.NetworkCredential(oVariable.ADUser(), oVariable.ADPassword(), oVariable.Domain());
            ClearViewWebServices         oWS          = new ClearViewWebServices();

            oWS.Timeout     = Int32.Parse(ConfigurationManager.AppSettings["WS_TIMEOUT"]);
            oWS.Credentials = oCredentials;
            //oWS.Url = oVariable.WebServiceURL();
            oWS.Url = "http://localhost:55030/ClearViewWebServices.asmx";

            string path = oWS.GetVMwarePath(txtVM.Text, "http://localhost:53744/", "OpHAa0tdJBAdeJALK65pMptAyK2SFcismq7QZNB9rMd4Fuhp6K8Zqx8z5gdA8KIGsi1YLTV7E57alz5cDMW5escYrHVTKbaReGLyDtNmYauuA8oFka6vXNCafcGe8cwD5q5OYHJk8Kgd7RyttpIJeO4BeLrAWJoWN1zkcJRNAWwnGxcyPnUSDXxqwEJmqjyzvuzfsmqTH5jssQ4QI3UJYFs0DiYHaEyrz71l86fC7blINf8PK2OwxYKZcIMjxSTcI13uZTSLYsMXuUmykj7h0b3Lybjzu5eori9WmN00kdHflWFrvo9pUMmH7s7XKsq3oyFlUAlGth6XDYzKG1dg5ZDP6CZ4Qcq2WN1XquH5dC6NPzdj2wrSok7x30prKrZq0eaZ6LtluhdD309GzPbuVINMQC4AfpuVMPXLxnnrcfxghEFd0S25pFFsAxjDR3gfXr0ndxilCTrPjGFm70JwwzGgkElaeTKj8ttZNsaCKQCFoZi337G0");

            while (path.Contains("\""))
            {
                path = path.Replace("\"", "");
            }
            string[] paths = path.Split(new string[] { "|" }, StringSplitOptions.RemoveEmptyEntries);
            if (paths.Length >= 3)
            {
                string strConnect = oVMware.ConnectDEBUG("https://" + paths[0] + ".pncbank.com/sdk", 999, "");
                if (strConnect == "")
                {
                    _service = oVMware.GetService();
                    _sic     = oVMware.GetSic();
                    //ManagedObjectReference datacenterRef = oVMWare.GetDataCenter();
                    //ManagedObjectReference vmFolderRef = oVMWare.GetVMFolder(datacenterRef);
                    //ManagedObjectReference clusterRef = oVMWare.GetCluster(strCluster);
                    //ManagedObjectReference resourcePoolRootRef = (ManagedObjectReference)oVMWare.getObjectProperty(clusterRef, "resourcePool");
                    ManagedObjectReference oComputer = GetVM(txtVM.Text, paths);
                    if (oComputer != null)
                    {
                        VirtualMachineConfigInfo oInfo = (VirtualMachineConfigInfo)oVMware.getObjectProperty(oComputer, "config");
                        Response.Write(oInfo.uuid + "<br/>");
                    }
                    if (_service != null)
                    {
                        //ServiceContent _sic = oVMware.GetSic();
                        _service.Abort();
                        if (_service.Container != null)
                        {
                            _service.Container.Dispose();
                        }
                        try
                        {
                            _service.Logout(_sic.sessionManager);
                        }
                        catch { }
                        _service.Dispose();
                        _service = null;
                        _sic     = null;
                        //oLog.AddEvent(intAnswer, strName, strSerial, "Logged out of VMware", LoggingType.Information);
                    }
                }
            }
            Response.Write(DateTime.Now.ToString() + "<br/>");
        }