IIS没有看到WCF服务

时间:2013-03-29 20:08:57

标签: wcf iis config endpoint

我将AjaxDataService.svc放在我的根目录中。 由于根文件夹自动部署了内容,因此我没有理由错过任何内容。 只有想到的是一个坏的.config

<system.serviceModel>
<behaviors>
  <serviceBehaviors>
    <behavior name="">
      <serviceMetadata httpGetEnabled="true" />
      <serviceDebug includeExceptionDetailInFaults="false" />
    </behavior>
  </serviceBehaviors>
  <endpointBehaviors>
    <behavior name="JsonBehavior">
      <webHttp />
    </behavior>
  </endpointBehaviors>
</behaviors>
<services>
  <service name="WashMyCarHomepage.AjaxEntityService">
    <endpoint address="" binding="webHttpBinding" contract="WashMyCarHomepage.IAjaxEntityService" behaviorConfiguration="JsonBehavior" />
    <host>
      <baseAddresses>
        <add baseAddress="http://sub.project.com" />
      </baseAddresses>
    </host>
  </service>
</services>
<serviceHostingEnvironment aspNetCompatibilityEnabled="false" multipleSiteBindingsEnabled="true" />

它在localhost上顺利运行。此外,应用程序的其余部分也按预期运行。

修改 有人列出可能的原因吗?

0 个答案:

没有答案