从 Windows 服务托管 WCF 服务
我创建了一个在 http://localhost:8080/SomeService
上托管 WCF 服务的 Windows 服务,
该 Windows 服务配置为使用 NetworkService 帐户运行。
当我尝试启动服务时,出现以下异常:
System.ServiceModel.AddressAccessDeniedException:HTTP 无法注册 URL
<代码>http://+:8000/。您的进程没有此命名空间的访问权限 (请参阅 http://go.microsoft.com/fwlink/?LinkId=70353< /a> 了解详细信息)。 --->
System.Net.HttpListenerException:访问被拒绝
我想要做的是向服务安装程序添加一些代码(例如在 AfterInstall
内),以赋予服务适当的权限。
在 C# 中如何做到这一点?
编辑
我知道该服务将安装在 XP、Vista 和 Win7 计算机上,因此我需要能够在所有这些平台上运行的东西。
I have made a Windows Service that host a WCF service on http://localhost:8080/SomeService
The Windows Service is configured to run using the NetworkService account.
When I try to start the service, I get the following exception:
System.ServiceModel.AddressAccessDeniedException: HTTP could not register URL
http://+:8000/. Your process does not have access rights to this namespace
(see http://go.microsoft.com/fwlink/?LinkId=70353 for details). --->
System.Net.HttpListenerException: Access is denied
What I want to do is to add some code to the service installer (inside AfterInstall
for example) to give the service the proper rights.
How can this be done in C#?
EDIT
I know that this service will be installed on XP, Vista and Win7 machines, so I will need something that works on all these platforms.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
LocalSystem
帐户。 (填充剩余空间)Try
LocalSystem
account. (filling remaining space)启动应用程序时尝试“以管理员身份运行”
Try "Run-as-Administrator" when you launch your application