0

我在使用 VS 2010 提供的“添加服务引用”功能更新(也尝试删除和添加)ASP.NET 网站项目中修改的 WCF 服务的服务引用时遇到问题。它没有正确创建 Reference.cs习惯于改变之前。我在 web.config 中验证了我的服务配置,端点似乎正确配置了 mexhttpbinding。

<service behaviorConfiguration="ServiceBehavior" name="Services.XyzService">
    <endpoint address="" binding="wsHttpBinding" contract="Services.IXyzService">
      <identity>
        <dns value="localhost"/>
      </identity>
    </endpoint>
    <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
  </service>

<behavior name="ServiceBehavior">
      <serviceMetadata httpGetEnabled="true" />
      <serviceDebug includeExceptionDetailInFaults="false" />
 </behavior>

svc 文件好像也没问题!!

<%@ ServiceHost Language="C#" Debug="true" Service="Services.XyzService"%>

任何想法?

4

0 回答 0