How can I create an HttpListener class on a random port in C#? - Stack Overflow most recent 30 from stackoverflow.com2010-03-15T20:46:42Zhttp://stackoverflow.com/feeds/question/223063http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/223063/how-can-i-create-an-httplistener-class-on-a-random-port-in-c0How can I create an HttpListener class on a random port in C#?Avid Programmerhttp://stackoverflow.com/users/02008-10-21T19:00:24Z2009-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#2231881Answer by Snooganz for How can I create an HttpListener class on a random port in C#?Snooganzhttp://stackoverflow.com/users/282242008-10-21T19:38:45Z2009-06-12T15:02:11Z<p>How about something like this:</p>
<pre><code> static List<int> usedPorts = new List<int>();
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>