Question

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.

Was it helpful?

Solution

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

See also this msdn post

OTHER TIPS

Connection pooling is done baased on the ServicePointManager/ServicePoint classes and so ServicePointManager MaxServicePoints/MaxServicePointIdleTime are used to control the caching.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top