不在LocalHost时找不到路径

时间:2013-10-16 22:28:22

标签: .net wcf localhost

我正在使用WCF。当我使用localhost启动应用程序时,我可以获得此路径:

string path = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, @"..\..\..\Version.txt");

我的网址是:

http://localhost:4426/MyService.svc

但是当我将“ServiceHost Uri”更改为我的计算机主机名时,WCF无法找到de path!

http://myhost:4426/MyService.svc

发生了什么事?

1 个答案:

答案 0 :(得分:0)

你能ping“myhost”吗?如果没有,你可以在你的主机文件中添加“myhost”,以便在请求“myhost”时知道要解析哪个ip。