我是WCF的新手,我正在尝试创建一个服务,它需要将url转换为服务器路径。例如:获取-> "www.sample.com/client1"返回-> "c://samplefolder/sampleproject/client1"
我正在尝试这个代码:
string realPath = HostingEnvironment.MapPath(URL);
但我得到The relative virtual path 'http://localhost:5353' is not allowed here
有人知道我做错了什么吗?由于
尝试使用相对路径。使用"~/client1"代替url"http://www.sample.com/client1"(符号"~"指定应用程序的根文件夹)