4

我有一个托管在 IIS 中的 WCF 服务。我也有一个 WCF 客户端(一个控制台应用程序)。我曾经svcutil构建代理类和配置文件,然后将它们添加到我的客户端项目中。它正确构建。但是当我尝试运行该程序时,它抛出了以下异常

在 ServiceModel 客户端配置部分中找不到引用合同“IService”的默认端点元素。这可能是因为没有为您的应用程序找到配置文件,或者因为在客户端元素中找不到与此合同匹配的端点元素。

//我的客户端程序代码

namespace MyFirstWCFClient
{
 class Program
 {
    static void Main(string[] args)
    {
        ServiceClient objClient = new ServiceClient();
        Console.WriteLine("Client calling the service....");

        string strName=Console.ReadLine();
        Console.WriteLine(objClient.HelloWorld("Shyju"));
        Console.Read();

    }
 }
}

我的客户端的 Output.config 文件是

  <?xml version="1.0" encoding="utf-8"?>
   <configuration>
    <system.serviceModel>
    <bindings>
        <wsHttpBinding>
            <binding name="WSHttpBinding_IService" closeTimeout="00:01:00"
                openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
                bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
                maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
                messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
                allowCookies="false">
                <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
                    maxBytesPerRead="4096" maxNameTableCharCount="16384" />
                <reliableSession ordered="true" inactivityTimeout="00:10:00"
                    enabled="false" />
                <security mode="Message">
                    <transport clientCredentialType="Windows" proxyCredentialType="None"
                        realm="" />
                    <message clientCredentialType="Windows" negotiateServiceCredential="true"
                        algorithmSuite="Default" establishSecurityContext="true" />
                </security>
            </binding>
        </wsHttpBinding>
    </bindings>
    <client>
        <endpoint address="http://localhost/IISHostedserviceTest/Service.svc"
            binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IService"
            contract="IService" name="WSHttpBinding_IService">
            <identity>
                <dns value="localhost" />
            </identity>
        </endpoint>
     </client>
 </system.serviceModel>
</configuration>

并且在我的服务的 web.config 中具有以下配置

   <system.serviceModel>
   <services>
    <service name="Service" behaviorConfiguration="ServiceBehavior">
    <!-- Service Endpoints -->
    <endpoint address="http://localhost/IISHostedserviceTest/Service.svc" binding="wsHttpBinding" contract="IService">
      <!-- 
          Upon deployment, the following identity element should be removed or replaced to reflect the 
          identity under which the deployed service runs.  If removed, WCF will infer an appropriate identity 
          automatically.
      -->
      <identity>
        <dns value="localhost"/>
      </identity>
    </endpoint>
    <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
  </service>
</services>
<behaviors>
  <serviceBehaviors>
    <behavior name="ServiceBehavior">
      <!-- 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>

我用这个(http://www.wcftutorial.net/WCF-IIS-Hosting.aspx)教程尝试了 WCF。

谁能指导我如何解决这个问题?

4

4 回答 4

23

快速提问:如果您的客户端应用程序被调用myclient.exe,您的配置是否与 EXE 位于同一目录并被调用MyClient.exe.config

您不能只使用output.configfrom svcutil- 您需要将 a 添加app.config到您的客户端控制台项目(myclient.exe.config编译时将重命名为),或者您需要复制/重命名output.configtomyclient.exe.config以便您的客户端应用程序可以查找和使用它。

于 2010-02-03T16:55:03.077 回答
6

您必须使用指定端点配置名称的客户端的构造函数,例如。

objClient = new ServiceClient ("WSHttpBinding_IService");

这将告诉代理使用您在配置文件中指定的配置。

于 2010-02-03T16:00:02.477 回答
3

我在 2 个 WCF 服务相互连接时遇到了类似的问题。

在使用 svcutil.exe 生成 output.config + MyService.cs 类文件并将它们复制到解决方案目录后,我遇到了同样的问题。

刚刚找到了这个问题的答案:您必须将整个“绑定”标签复制到“ServiceModel”标签内的主配置文件中,并将引用的端点复制到主配置文件中现有端点旁边 - 这为我解决了异常问题

于 2011-06-29T15:40:56.410 回答
2

另一种方法是将服务引用添加到您的 IIS 托管服务。Visual Studio 将自动在后台运行 svcutil 并为您完成配置工作——即它会为您创建 app.config。

手动执行它很好,但我建议通过添加服务引用至少运行一次以查看它是否正常工作。

于 2010-02-03T17:14:38.930 回答