WCF中此异常的原因

时间:2010-09-28 15:23:29

标签: c# wcf

我正在学习WCF,现在我在运行应用程序时遇到一个异常: 例外:

  

无法找到默认端点   引用合同的元素   ServiceModel客户端中的“IService1”   配置部分。这可能是   因为没有配置文件   找到您的申请,或因为   没有匹配此的端点元素   合同可以在客户端找到   元件。

服务代码:

namespace StockService
{
    // NOTE: You can use the "Rename" command on the "Refactor" menu to change the class name "Service1" in code, svc and config file together.
    public class Service1 : IService1
    {
        public string GetData(int value)
        {
            return string.Format("You entered: {0}", value);
        }

        public CompositeType GetDataUsingDataContract(CompositeType composite)
        {
            if (composite == null)
            {
                throw new ArgumentNullException("composite");
            }

            if (composite.BoolValue)
            {
                composite.StringValue += "Suffix";
            }

            return composite;
        }

        public string  GetCompositedata()
        {
           CompositeType ct = new CompositeType();
           return ct.StringValue;
        }
    }
}

的web.config:

<configuration>
  <system.web>
    <compilation debug="true" targetFramework="4.0" />
  </system.web>
  <system.serviceModel>
    <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>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
  </system.serviceModel>
 <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>
</configuration>

现在使用svcutil我已经生成了proxyclass(generatedProxy.cs)和配置文件(serviceapp.config)并将其添加到控制台应用程序(客户端)

客户端:

Service1Client sc = new Service1Client();
Console.WriteLine(sc.GetCompositedata());
Console.ReadKey();

配置:

<configuration>
    <system.serviceModel>
        <bindings>
            <basicHttpBinding>
                <binding name="BasicHttpBinding_IService1" closeTimeout="00:01:00"
                    openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
                    allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
                    maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
                    messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
                    useDefaultWebProxy="true">
                    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
                        maxBytesPerRead="4096" maxNameTableCharCount="16384" />
                    <security mode="None">
                        <transport clientCredentialType="None" proxyCredentialType="None"
                            realm="" />
                        <message clientCredentialType="UserName" algorithmSuite="Default" />
                    </security>
                </binding>
            </basicHttpBinding>
        </bindings>
        <client>
            <endpoint address="http://localhost:2614/Service1.svc" binding="basicHttpBinding"
                bindingConfiguration="BasicHttpBinding_IService1" contract="IService1"
                name="BasicHttpBinding_IService1" />
        </client>
    </system.serviceModel>
</configuration>

我无法弄清楚为什么我会收到这个例外。

请帮忙

2 个答案:

答案 0 :(得分:6)

是否为客户端应用的app.configweb.config的客户端部分显示该配置,如果它是网站/网络应用程序?

您需要在应用程序的配置中包含这些部分 - 将这些配置放在svcutil.exe创建的单独文件中是不够的 - 它需要成为应用程序配置的一部分。

答案 1 :(得分:2)

svcutil生成的配置需要进入你的主app.config,而不是按原样包含。

您需要将app.config添加到项目中,然后将svcutil配置的内容合并到配置部分。