从 Windows 服务托管 WCF 服务

发布于 2024-11-08 23:26:44 字数 772 浏览 0 评论 0原文

我创建了一个在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

爱给你人给你 2024-11-15 23:26:44

尝试 LocalSystem 帐户。 (填充剩余空间)

Try LocalSystem account. (filling remaining space)

一桥轻雨一伞开 2024-11-15 23:26:44

启动应用程序时尝试“以管理员身份运行”

Try "Run-as-Administrator" when you launch your application

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文