我正在使用 iDesign 中关于单向调用的示例。我可以让它在 Vista 机器(VS2008)上工作,但不能在 Windows 7 机器(VS2010)上工作。
我收到此错误:
HTTP could not register URL http://+:8001/MyService/. Your process does not have access rights to this namespace
ServiceHost host = new ServiceHost(typeof(MyService));
host.Open();
我在线上得到错误host.Open();
。我注意到windows首先要求一些防火墙并给予我做过的许可,但它仍然无法正常工作。我能做些什么?