1

好的,让我们开始吧。我制作 wcf 服务并通过 Visual Studio 2012 在 IIS 7.5 中发布它。当我使用 WCF 测试客户端时,该服务正在运行并且运行良好。

为了启用 UDP 发现,我对 app.config 进行了一些调整,如下所示:

<system.serviceModel>
<services>
  <service name="System_Core.wcf_service">
    <endpoint address="" binding="wsHttpBinding" contract="System_Core.IWCF_Service" />
    <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
    <endpoint isSystemEndpoint="true" kind="udpDiscoveryEndpoint" />
    <host>
      <baseAddresses>
        <add baseAddress="http://localhost:8888" />
      </baseAddresses>
    </host>
  </service>
</services>
<behaviors>
  <serviceBehaviors>
    <behavior>
      <!-- To avoid disclosing metadata information, 
      set the values below to false before deployment -->
      <serviceMetadata httpGetEnabled="False" httpsGetEnabled="False" />
      <!-- 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="True" />
      <serviceDiscovery />
    </behavior>
  </serviceBehaviors>
</behaviors>

该文件在发布时也会复制到 web.config。简而言之,wcf 服务本身运行良好。

问题是这样的:我制作了另一个需要在网络上发现 wcf 服务的项目。但该发现仅在第一次调用或手动导航到浏览器中的 .svc 后才有效。当我在 IIS7 管理器中重新启动 IIS 或 wcf 时,发现返回失败/未收到任何响应。似乎 wcf 没有自动启动。我检查了 IIS 配置,它会自动启动。该站点本身也设置为自动启动。我什至根据网络上的一些建议将其中一些行放在 applicationHost.config 中:

 <site name="WCF" id="1" serverAutoStart="true">
            <application path="/" serviceAutoStartEnabled="true" >
                <virtualDirectory path="/" physicalPath="C:\inetpub\wwwroot\WCF" />
            </application>
            <bindings>
                <binding protocol="http" bindingInformation="*:8888:" />
            </bindings>
        </site>


<applicationPools>
        <add name="DefaultAppPool" startMode="AlwaysRunning" managedRuntimeVersion="v4.0" />
        <add name="ASP.NET v4.0" managedRuntimeVersion="v4.0" />
        <add name="ASP.NET v4.0 Classic" managedRuntimeVersion="v4.0" managedPipelineMode="Classic" />
        <applicationPoolDefaults>
            <processModel identityType="ApplicationPoolIdentity" loadUserProfile="true" setProfileEnvironment="false" />
        </applicationPoolDefaults>
    </applicationPools>

还是没用!IIS 说它“已启动”,Site 说它“已启动”,但只有在浏览器中手动调用服务 .svc 文件后,发现仍然有效。当您重新启动服务器或站点时,它又无法正常工作。我相信任何服务都应该在 IIS 启动时启动,但它不会。

我在互联网上发现其他一些人也有同样的问题,但仍然没有解决。

4

1 回答 1

0

我放弃并跳过所有令人困惑的并安装 IIS 的初始化页面扩展,由伟大的 Schwammy 在此页面中描述:

http://www.schwammysays.net/auto-starting-websites-on-iis-7-5/

效果很好,很简单!

于 2014-09-19T07:09:45.853 回答