Piszę serwer HTTP w C #.
Kiedy próbuję wykonać tę funkcję HttpListener.Start()
, słyszę HttpListenerException
powiedzenie
"Brak dostępu".
Kiedy uruchamiam aplikację w trybie administratora w systemie Windows 7, działa dobrze.
Czy mogę to uruchomić bez trybu administratora? jeśli tak, jak? Jeśli nie, jak mogę zmienić aplikację w tryb administratora po uruchomieniu?
using System;
using System.Net;
namespace ConsoleApplication1
{
class Program
{
private HttpListener httpListener = null;
static void Main(string[] args)
{
Program p = new Program();
p.Server();
}
public void Server()
{
this.httpListener = new HttpListener();
if (httpListener.IsListening)
throw new InvalidOperationException("Server is currently running.");
httpListener.Prefixes.Clear();
httpListener.Prefixes.Add("http://*:4444/");
try
{
httpListener.Start(); //Throws Exception
}
catch (HttpListenerException ex)
{
if (ex.Message.Contains("Access is denied"))
{
return;
}
else
{
throw;
}
}
}
}
}