Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>From <a href="http://msdn.microsoft.com/en-us/library/6484zdc1.aspx" rel="nofollow"> Element (Network Settings)</a>:</p> <blockquote> <p>The Element (Network Settings) element contains settings for classes in the System.Net and related child namespaces. The settings configure authentication modules, connection management, mail settings, the proxy server, and Internet request modules for receiving information from Internet hosts.</p> </blockquote> <p>So for example the maxConnection setting applies to any attempt to make outbound connections using WebRequest or it's subclasses (HttpWebRequest, FtpWebRequest, etc.). ASP.NET is a layer over the core framework so these settings apply to it and all other types of applications such as Windows.Forms and console apps. </p> <p>To confirm I have personally had to set this setting for console, winform and ASP.NET apps to increase the maxConnection limits when doing load testing.</p> <p>Example usage:</p> <pre><code> &lt;system.net&gt; &lt;connectionManagement&gt; &lt;add address="*" maxconnection="1000"/&gt; &lt;/connectionManagement&gt; &lt;/system.net&gt; </code></pre> <p>Also check that the server being connected to is using HTTP keep-alive if you are creating lots of short lived connections to the same URL, e.g. if making SOAP service calls. This will allow calls to re-use the same connection. If you don't do this then you can exhaust the available TCP ports on machine making the outbound calls, because once used they don't become immediately available for re-use (this point is really only relevant for high load or load testing set-ups).</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload