Пример #1
0
        public string Service_GetServerInfo(string _type)
        {
            string urlHost       = Request.Url.Host;
            string urlPort       = Request.Url.Port.ToString();
            string ServerMapPath = "";//Server.MapPath("~");
            string ServiceUri    = _systemConfigRepository.GetValueByName("ServiceUri");
            var    _serviceUri   = string.Format(ServiceUri, urlHost);
            string resStr        = string.Format("&urlHost*{0}&urlPort*{1}&Obj*{2}&ServiceUri*{3}&ServerMapPath*{4}&arg*", urlHost, urlPort, _type, _serviceUri, ServerMapPath);//&ServerMapPath*{2} ServerMapPath

            return(resStr);
        }