I ran into this many moons ago. Bottom line is you are running out of available ports.
First make sure what ever is calling your calling application has collection pooling on.
If that does then check the number of available ports for the SQL Server.
What is happening is that if pooling is off then every call takes a port and it takes by default 4 minutes to have the port expire, and you are running out of ports.
If pooling is on then you need to profile all the ports of SQL Server and make sure you have enough and expand them if necessary.
When I came across this error, somebody put in the connection string pooling was off and it caused this issue whenever a decent load was put on the websitewe developed. We did not see it in development because the load was 2 or 3 people at max, but once we got to the great number of grew over 10 we kept seeing this error. We turned pooling on, and it fixed it.
