我在负载平衡环境中运行时遇到错误 WCF windows 应用程序。
登录错误
无法连接到 net.tcp://192.168.1.63:7000/FFSecuritySVC。连接尝试持续了 00:00:21.0609450 的时间跨度。TCP错误码10060:连接尝试失败,因为连接的一方在一段时间后没有正确响应,或者连接的主机没有响应192.168.1.63:7000,建立连接失败。
好的
我使用“nettcpbinding”方法进行绑定和代码如下。
<behaviors>
<serviceBehaviors>
<behavior name="CommonBehavior"/>
</serviceBehaviors>
<endpointBehaviors>
<behavior name="CommonBehavior">
<dataContractSerializer maxItemsInObjectGraph="65536000" />
</behavior>
</endpointBehaviors>
</behaviors>
<bindings>
<netTcpBinding>
<binding name="netTcpBinding" maxReceivedMessageSize="9000000" transferMode="Buffered" listenBacklog="500" maxBufferPoolSize="9000000" maxBufferSize="9000000" maxConnections="500"
closeTimeout="02:02:00" openTimeout="02:02:00" receiveTimeout="02:02:00" sendTimeout="02:02:00">
<readerQuotas maxDepth="32" maxStringContentLength="9000000" maxArrayLength="9000000" maxBytesPerRead="9000000" maxNameTableCharCount="9000000" />
<reliableSession ordered="true" inactivityTimeout="02:02:00"
enabled="false" />
<security mode="None">
<transport clientCredentialType="Windows" protectionLevel="None" />
<message clientCredentialType="Windows" />
</security>
</binding>
</netTcpBinding>
</bindings>
请给我解决这个问题的解决方案......