diff --git a/WebsitePanel/Lib/AjaxControlToolkit.dll b/WebsitePanel/Lib/AjaxControlToolkit.dll index e36dee57..abc098c4 100644 Binary files a/WebsitePanel/Lib/AjaxControlToolkit.dll and b/WebsitePanel/Lib/AjaxControlToolkit.dll differ diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/ProviderControls/HyperVForPrivateCloud_Settings.ascx.cs b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/ProviderControls/HyperVForPrivateCloud_Settings.ascx.cs index cc52f05f..738e7e2b 100644 --- a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/ProviderControls/HyperVForPrivateCloud_Settings.ascx.cs +++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/ProviderControls/HyperVForPrivateCloud_Settings.ascx.cs @@ -68,7 +68,7 @@ namespace WebsitePanel.Portal.ProviderControls hosts = ES.Services.VPSPC.GetClusters(PanelRequest.ServiceId); } } - catch (Exception ex) + catch { hosts = null; } diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/VPSForPC/VdcCreateServer.ascx.cs b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/VPSForPC/VdcCreateServer.ascx.cs index 35b7f7bf..6dde4925 100644 --- a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/VPSForPC/VdcCreateServer.ascx.cs +++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/VPSForPC/VdcCreateServer.ascx.cs @@ -130,7 +130,7 @@ namespace WebsitePanel.Portal.VPSForPC btn.Enabled = false; } - messageBox.ShowErrorMessage("VPS_ERROR_CREATE", new Exception("no templates")); + messageBox.ShowErrorMessage("VPS_ERROR_CREATE", new Exception("no templates", ex)); } // summary letter e-mail PackageInfo package = ES.Services.Packages.GetPackage(PanelSecurity.PackageId); diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/VPSForPC/VdcFastCreateServer.ascx.cs b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/VPSForPC/VdcFastCreateServer.ascx.cs index 25ab4a19..9a875029 100644 --- a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/VPSForPC/VdcFastCreateServer.ascx.cs +++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/VPSForPC/VdcFastCreateServer.ascx.cs @@ -85,7 +85,7 @@ namespace WebsitePanel.Portal.VPSForPC listOperatingSystems.Enabled = false; txtVmName.Enabled = false; btnCreate.Enabled = false; - messageBox.ShowErrorMessage("VPS_ERROR_CREATE", new Exception("no VM")); + messageBox.ShowErrorMessage("VPS_ERROR_CREATE", new Exception("no VM", ex)); } } diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/VPSForPC/VpsDetailsConfiguration.ascx.cs b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/VPSForPC/VpsDetailsConfiguration.ascx.cs index c8f4abea..c8f2bf6d 100644 --- a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/VPSForPC/VpsDetailsConfiguration.ascx.cs +++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/VPSForPC/VpsDetailsConfiguration.ascx.cs @@ -67,12 +67,7 @@ namespace WebsitePanel.Portal.VPSForPC } catch (Exception ex) { - vm = null; - } - - if (vm == null) - { - messageBox.ShowErrorMessage("VPS_LOAD_VM_META_ITEM"); + messageBox.ShowErrorMessage("VPS_LOAD_VM_META_ITEM", ex); return; }