如何解决Web套接字客户端连接数限制问题

时间:2012-09-20 08:49:53

标签: wcf websocket

我开发了一个websocket服务,客户端跟随http://blogs.microsoft.co.il/blogs/idof/archive/2012/03/06/what-s-new-in-wcf-4-5-websocket-support-part-2-of-2.aspx。 当我测试它时,我发现只有十个客户端可以连接到该服务。这是我的配置:  

<customBinding>
<binding name="customConfig">
<byteStreamMessageEncoding />
     <httpTransport>
     <webSocketSettings transportUsage="Always" createNotificationOnConnection="true" maxPendingConnections="10000" />
          </httpTransport>
        </binding>
      </customBinding>

我知道对于像tcpbinding这样的双工通信,设置“maxConnections”属性可以提高可以连接server的客户端数量。但是对于自定义绑定,没有这样的属性。

我该如何解决?

我已经配置了行为:

<serviceBehaviors>
        <behavior name="serviceBehaive">
          <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
          <serviceDebug includeExceptionDetailInFaults="false" />
          <serviceThrottling maxConcurrentCalls="100000" maxConcurrentSessions="100000"
            maxConcurrentInstances="100000" />
        </behavior>
      </serviceBehaviors>

谁能帮帮我?

1 个答案:

答案 0 :(得分:0)

我用这个问题咨询了作者。他的回答是: 这是桌面操作系统中iis的限制。在服务器操作系统上没有限制,以及iis express

谢谢他