0

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

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

我的网址是:

http://localhost:4426/MyService.svc

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

http://myhost:4426/MyService.svc

这是怎么回事?

4

1 回答 1

0

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

于 2013-10-17T23:20:05.410 回答