无法调用托管Windows服务中托管的WCF服务

时间:2013-10-03 19:26:09

标签: c# .net wcf web-services service

所以我对托管Windows服务中托管的WCF服务有一些问题。

基本上我做的是以下内容:

我使用一个简单的测试创建了一个WCF服务库(WCF服务模板),就像这样

[ServiceContract]
public interface IExample
{
    [OperationContract]
    string HelloWorld();
}

public class Example : IExample
{
    public string HelloWorld()
    {
        return "HelloWorld";
    }
}

我还创建了一个相应的app.config,这是

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <startup>
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
    </startup>
    <system.serviceModel>
        <behaviors>
            <serviceBehaviors>
                <behavior name="ServiceBehavior">
                    <serviceMetadata httpGetEnabled="true"/>
                </behavior>
            </serviceBehaviors>
        </behaviors>
        <services>
            <!-- This section is optional with the new configuration model introduced in .NET Framework 4. -->
            <service name="Peripherie.WCFService" behaviorConfiguration="ServiceBehavior">
                <host>
                    <baseAddresses>
                        <add baseAddress="http://localhost:8067/PeripherieService"/>
                    </baseAddresses>
                </host>
                <endpoint address="" binding="wsHttpBinding" contract="Peripherie.WCFService.Interfaces.IExample" />
                <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
            </service>
        </services>
    </system.serviceModel>
</configuration>

之后,我添加了一个Win Service项目(再次使用Win Service模板),该项目引用了上面的lib和其他所需的库。

在Service类中,我做了创建servicehost的基本内容

public partial class Service : ServiceBase
{
    public ServiceHost serviceHost = null;

    public Service()
    {
       InitializeComponent();
    }

   protected override void OnStart(string[] args)
   {
       if(serviceHost!=null)
        serviceHost.Close();

       serviceHost = new ServiceHost(typeof(Service));

       serviceHost.Open();
   }

   protected override void OnStop()
   {
       if(serviceHost!=null)
       {
        serviceHost.Close();
        serviceHost = null;
       }
   }
}

我还为服务添加了所需的安装程序,并将帐户设置为localSystem。

整个项目编译得很好,我也能够安装服务(使用installutil方法)并启动它。但是,当我尝试在浏览器中打开服务时,我得到了无法加载一方的错误,我也无法使用WCF测试客户端,因为它告诉我没有要检索的元数据。

我真的不明白为什么整个想法都不起作用,因为似乎一切都设置正确。

所以任何建议都会很好。

编辑:

修复了SouthShoreAK指出的错误后,我在配置中发现了一个错误,其中:

<service name="Peripherie.WCFService" behaviorConfiguration="ServiceBehavior">

应该是这样的:

<service name="Peripherie.WCFService.Services.Example" behaviorConfiguration="ServiceBehavior">

现在我收到了无法注册网址的错误,

System.ServiceModel.AddressAccessDeniedException: HTTP konnte URL "http://+:8067/PeripherieService/" nicht registrieren. Der Prozess weist keine Zugriffsrechte für diesen Namespace auf 

我已经尝试了HERE描述的工具但是没有解决错误。由于错误,仍然可以启动服务。

编辑:

好的,问题也已解决,我的服务流程安装程序仍然设置为networkService。将其设置为本地系统后,我可以立即启动该服务。

但是当我通过IE调用url时,我仍然收到错误400.

最终编辑:

好的,现在它可以工作,最后一个错误是因为基地址的末尾缺少/。所以应该是

<add baseAddress="http://localhost:8067/PeripherieService/"/>

由于SouthShoreAK几乎指出了我在配置中犯的错误,我会接受他的回答,因为它让我走上正轨。

1 个答案:

答案 0 :(得分:1)

您的合同应该是IExample,而不是IMain

 <endpoint name="ServiceHttpEndpoint" address="http://localhost:8067/PeripherieService" binding="wsHttpBinding" contract="Peripherie.WCFService.Interfaces.IMain" />

应改为:

 <endpoint name="ServiceHttpEndpoint" address="http://localhost:8067/PeripherieService" binding="wsHttpBinding" contract="Peripherie.WCFService.Interfaces.IExample" />

另外,这个:

serviceHost = new ServiceHost(typeof(Service));

应该是这样的:

serviceHost = new ServiceHost(typeof(Example));

您正尝试在服务主机中注册Windows服务实例。您应该注册您的WCF服务。

有时我发现即使服务主机遇到错误,您的Windows服务也会启动并运行。您可能需要检查Windows事件日志(只需在开始菜单中键入“事件查看器”)以查看是否出现任何问题。