IIS Express can be configured using the applicationHost.config file. It is located in %userprofile%\my documents\IISexpress\config
Open this file in a text editor. The <sites> element is located in the <system.applicationHost> section. In this case, you will find the <site> element for each site hosted in IIS express. Find the item that matches your site. Add the <limits> element as shown below.
<sites> <site name="YourSiteName" id="YourSiteId"> <limits maxBandwidth="65536" maxConnections="1024" connectionTimeout="00:01:00" /> </site> </site>
You can set the maxConnections parameter to the required number of requests.
This should work, although I have not tested it.
Kedar Vaidya Jan 04 2018-12-12T00: 00Z
source share