1

I have added some params in machine.config file in C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\Config.

<system.net>
     <connectionManagement>
         <add address="*" maxconnection="24" />
     </connectionManagement>
 </system.net>
 <system.web>
     <processModel autoConfig="true"
         maxWorkerThreads = "100"
         maxIoThreads = "100"
         minWorkerThreads = "50"
         minIoThreads = "50"
     />
     <httpRuntime 
         minFreeThreads="176" 
         minLocalRequestFreeThreads="152" 
     />
 </system.web>

How do I check if the changes have been affected in the IIS?

1 Answers1

0

Windows\Microsoft.NET\Framework\v4.0.30319\Config\machine.config: Holds the global defaults for the .NET framework settings, including some of the ASP.NET ones (the rest of the settings are in the web.config at the same folder, which is sometimes called the root web.config).

ConnectionManagement should be easily tested by trying to open more than the specified number of connections to a host. For more details, you could refer to this issue.

Joey Cai
  • 18,968
  • 1
  • 20
  • 30