<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="ep1" 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:57582/Service1.svc" binding="basicHttpBinding"
bindingConfiguration="ep1" contract="ServiceReference1.IService1"
name="ep1" />
</client>
</system.serviceModel>
</configuration>
这是我在自动生成的 app.config 文件中对客户端端点的配置,但我仍然收到以下错误: 在 ServiceModel 客户端配置部分中找不到名称为“ep1”和合同“ServiceReference1.IService1”的端点元素。这可能是因为没有为您的应用程序找到配置文件,或者因为在客户端元素中找不到与此名称匹配的端点元素。
我正在使用::
Service1Client wcf = new Service1Client("ep1")
它现在可以工作了。我刚刚在 web.config 中定义了来自自动生成的 app.config 文件的整个解决方案的客户端端点。它现在可以工作了。