我需要为app.config中的简化WCF配置做什么最小客户端设置?
默认值为:
<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>
我可以排除哪些内容,以及我需要多少内容?
编辑:我应该开始剥离部件直到它断开吗?我希望找到一些优秀的wsHttpBindings,让人们好运。
答案 0 :(得分:8)
Jerograv是对的,因为这些都是默认值,你可以省略所有这些。 为了测试这个,我创建了一个简单的服务并创建了所需的最小配置,这几乎就是地址,绑定和契约 -
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.serviceModel>
<client>
<endpoint address="http://sabra2/TestService/Service1.svc" binding="wsHttpBinding"
contract="IService1"/>
</client>
</system.serviceModel>
</configuration>
答案 1 :(得分:7)
记住WCF的ABC。地址,装订,合同。这就是你所需要的一切!
您的客户端只需要有一个端点可以与WCF服务进行通信。每个端点只需要描述每个ABC,你就完成了。其他的东西可以在以后加以解决。
这就是我不喜欢在Visual Studio中添加服务引用的原因之一。
答案 2 :(得分:4)
我想你会发现所有都是可选的。无论如何,特定绑定中的所有内容都是默认值。
事实上,我认为在这种情况下,在端点中指定绑定是可选的。