To work around this problem, change the Microsoft ASP.NET
maxconnection property on the Web front-end server. For example, change the value to
10. To do this, follow these steps:
- Locate the following folder:
C:\Windows\Microsoft.NET\Framework\v.2.0.50727\CONFIG
- In a text editor, open the Machine.config file, and then add the following section to the <configuration> tag before the <system.web> tag:
<system.net>
<connectionManagement>
<add address="*" maxconnection="10" />
</connectionManagement>
</system.net>
- Save the changes, and then close the file.