Search code examples
wcfconnection-poolingwcf-bindingwebhttpbinding

Is WebHttpBinding uses TCP connection pooling?


I can see in MSDN page that NetTcpBinding in new .NET 4.5 uses TCP connection pooling based on the service’s host DNS name and the port number the service is listening on. Does it true for WebHttpBinding as well? I could not find answer to this question.


Solution

  • It seems, that connection pooling is allowed for tcp (TcpConnectionPoolSettings) and Named pipes (NamedPipeConnectionPoolSettings) only.

    See also this msdn post