本地计算机上的服务已启动然后停止,如果其他服务或程序未使用某些服务,则会自动停止

时间:2013-09-07 06:26:50

标签: .net wcf service windows-services

我创建了一个示例Windows服务并成功安装了我的服务。但是在开始服务的同时。我收到了以下错误。

本地计算机上的此服务已启动然后停止。 如果其他服务或程序未使用某些服务,则会自动停止

enter image description here

我的配置文件代码:

<system.serviceModel>
    <services>
      <service name="SvcClient.WCFJobsLibrary.Service1">
        <endpoint address="" binding="wsHttpBinding" contract="WCFJobsLibrary.IService1">
          <identity>
            <dns value="localhost" />
          </identity>
        </endpoint>
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
        <host>
          <baseAddresses>
            <add baseAddress="http://localhost:8732/Design_Time_Addresses/WCFJobsLibrary/Service1/" />
          </baseAddresses>
        </host>
      </service>
 </services>
    <behaviors>
      <serviceBehaviors>
        <behavior>
          <!-- To avoid disclosing metadata information, 
          set the value below to false and remove the metadata endpoint above before deployment -->
          <serviceMetadata httpGetEnabled="True"/>
          <!-- To receive exception details in faults for debugging purposes, 
          set the value below to true.  Set to false before deployment 
          to avoid disclosing exception information -->
          <serviceDebug includeExceptionDetailInFaults="False" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
  </system.serviceModel>

任何人都可以建议我...... 谢谢你。

1 个答案:

答案 0 :(得分:2)

您需要指定服务的端点(客户端可以访问服务的URI)。

您可以在实例化ServiceHost的代码中执行此操作(非常通用的示例):

ServiceHost myHost = new ServiceHost(typeof(TechResponse), new Uri("http://www.somedomain.com/TechResponse"));