예제 #1
0
        /// <summary>
        /// Method to get IXMWEB SErver URL
        /// </summary>
        /// <returns>URL value</returns>
        public string GetIXMServerURL()
        {
            string url = null;

            try
            {
                //Expand IXMWEB Server
                commpo.ShowIXMWEBServerSettings();

                //Get URL
                url = ixmwebserverpo.GetIXMWEBServerURL();
            }
            catch (Exception ex)
            {
                Logger.Error(ex, "Failed to get IXMWEB Server URL value");
                throw new Exception("Failed to get IXMWEB Server URL in access layer");
            }
            return(url);
        }
예제 #2
0
 public IXMWEBServer_AL()
 {
     commpo         = new Communication_PO();
     ixmwebserverpo = new IXMWEBServer_PO();
     commpo.ShowIXMWEBServerSettings(true);
 }