1 public FileMessageResult UploadFile(FileMessageInfo request) 2 { 3 //此处我想取得WCF发布的网络路径 http://192.168.0.11:8086 4 string urlPath = System.Web.HttpContext.Current.Request.Url.ToString(); 5 //此处我想取得服务器的物理李静 C:\winfom\upload 6 string uploadFolder = System.Web.Hosting.HostingEnvironment.MapPath("~"); 7 return BLLFactory<FileOperateUtil>.Instance.UploadFile(request, uploadFolder); 8 } 9
我在尝试获取WCF部署的网络路径,想不出办法,求大神指点。
我不想通过传参数的形式实现。
此段代码部署在IIS上。
像网址这种东西,你可以写在配置文件里面啊,