How can I create an HttpListener class on a random port in C#? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-15T20:46:42Z http://stackoverflow.com/feeds/question/223063 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/223063/how-can-i-create-an-httplistener-class-on-a-random-port-in-c 0 How can I create an HttpListener class on a random port in C#? Avid Programmer http://stackoverflow.com/users/0 2008-10-21T19:00:24Z 2009-06-12T15:02:11Z <p>I would like to create an application that serves web pages internally and can be run in multiple instances on the same machine. To do so, I would like to create an HttpListener that listens on a port that is: 1) Randomly selected 2) Currently unused</p> <p>Essentially, what I would like is something like:</p> <pre><code>mListener = new HttpListener(); mListener.Prefixes.Add("http://*:0/"); mListener.Start(); selectedPort = mListener.Port; </code></pre> <p>How can I accomplish this?</p> http://stackoverflow.com/questions/223063/how-can-i-create-an-httplistener-class-on-a-random-port-in-c/223188#223188 1 Answer by Snooganz for How can I create an HttpListener class on a random port in C#? Snooganz http://stackoverflow.com/users/28224 2008-10-21T19:38:45Z 2009-06-12T15:02:11Z <p>How about something like this:</p> <pre><code> static List&lt;int&gt; usedPorts = new List&lt;int&gt;(); static Random r = new Random(); public HttpListener CreateNewListener() { HttpListener mListener; int newPort = -1; while (true) { mListener = new HttpListener(); newPort = r.Next(1025, 65535); // be nice, don't use ports bellow 1025 if (usedPorts.Contains(newPort)) { continue; } mListener.Prefixes.Add(string.Format("http://*:{0}/", newPort)); try { mListener.Start(); } catch { continue; } usedPorts.Add(newPort); break; } return mListener; } </code></pre> <p>I'm not sure how you would find all of the ports that are in use on that machine, but you should get an exception if you try to listen on a port that is already being used, in which case the method will simply pick another port.</p>