public void Initialize()
        {
            try
            {
                var web = SPSite.OpenWeb(SPSiteURL, Authentication);

                SPSiteName = web.Title;
                SPWebID    = web.WebId;
                SPSiteID   = web.SiteId;
            }
            catch (Exception ex)
            {
                EventLogs.Warn(String.Format(IntegrationManagerLoadError, ex.GetType().Name, ex.Message), "Integration Manager", 468626, CSContext.Current.SettingsID);
            }

            TEGroupName = TEHelper.GetGroupName(TEGroupId);
        }