今天在WIN 8.1的电脑上写了个C# WCF的测试服务,程序的代码写好,运行的时候却出现如下错误:
异常:An unhandled exception of type 'System.ServiceModel.AddressAccessDeniedException' occurred in System.ServiceModel.dll
Additional information: HTTP could not register URL http://+:8080/hello/. Your process does not have access rights to this namespace (see http://go.microsoft.com/fwlink/?LinkId=70353 for details).
怎么办,以前从来没遇到过这种错误啊,于是去GOOGLE找答案,发现原来是WIN7/WIN8/VISTA的安全设置引起,说可以用"netsh.exe"命令来解决,具体的命令如下:
以管理员身份运行命令提示符窗口,键入命令
netsh http add urlacl url=http://+:8080/ user=DOMAINUserName
我自己试了一下,没有作用,不知道参数怎么配置(下载了工具HttpNamespaceManager在WIN 8.1下也不能正常运行),不管了。
还有一种更为快捷的解决方案,就是以管理员的身份来运行Visual Studio,赶紧试一下,以管理员身份打开,再运行之前的WCF服务,果然程序正常运行了。
本文参考资料:http://www.cnblogs.com/think8848/archive/2011/07/24/2115295.html

版权声明:本作品系原创,版权归码友网所有,如未经许可,禁止任何形式转载,违者必究。
发表评论
登录用户才能发表评论, 请 登 录 或者 注册