Windows 服务中托管的 WCF 错误
我有一个 VB 中的 WCF,它将托管在 Windows 服务中。我管理了安装程序,因此该服务实际上已安装。但是,当我尝试启动该服务时,出现以下错误:
本地计算机上的服务已启动 然后停了下来。部分服务停止 如果他们没有工作可自动完成 例如,执行性能日志 和警报服务。
检查事件查看器给我以下信息:
服务无法启动。 System.ArgumentException:ServiceHost 仅支持类服务类型。
在 System.ServiceModel.Description.ServiceDescription.GetService(类型 服务类型)
在 System.ServiceModel.ServiceHost.CreateDescription(IDictionary`2& 已实施的合同)........................
有人知道发生了什么事吗?谢谢!
I have a WCF in VB which is to be hosted in a Windows Service. I managed the install program so the service actually installs. But, when I try to start the service, I get the following error:
The service on Local Computer started
and then stopped. Some services stop
automatically if they have no work to
do, for example, the Performance Logs
and Alerts service.
Cheking the Event Viewer gives me the following:
Service cannot be started.
System.ArgumentException: ServiceHost
only supports class service types.
at
System.ServiceModel.Description.ServiceDescription.GetService(Type
serviceType)
at
System.ServiceModel.ServiceHost.CreateDescription(IDictionary`2&
implementedContracts).........
Anybody have any ideas what's going on? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ServiceHost 构造函数必须是服务契约的具体实现。
听起来您正在传递接口而不是服务实现。
The ServiceHost constructor must be concrete implementation of service contract.
It sounds like you are passing in the Interface rather than the service implementation.
创建 ServiceHost 时使用类名称 - 在上面它是 MCManagementService。在端点中,使用接口 - 在上面它是 IMCManagementService。
When creating the ServiceHost use the Class name - in the above it is MCManagementService. In the endpoint, use the interface - in the above it is IMCManagementService.