今天项目在生产环境运行之后WCF开始提示:
HTTP could not register URL http://+:9000/. Your process does not have access rights to this namespace (see http://go.microsoft.com/fwlink/?LinkId=70353 for details).
解决方法有两种:
1.提示是权限不够,本地的VS一直是管理员命令打开,所以没有遇到问题,程序设置一个默认管理员打开
2.使用命令(授予帐户对端口上任何命名空间的访问权限)
需要注意cmd需要用管理员身份运行,在输入命令
netsh http add urlacl url=http://+:9000/ user=Everyone
删除权限的命令:
netsh http delete urlacl url=http://+:9000/