Corentin THERY - 2016-08-23

Hi,

As a test I was using Cassini server for an application. It works quite well but I got a simple issue that forces me to search for an alternative portable web server. I found MiniHttpd and I try to use it.

I have to launch an aspx site in a local directory, but when I try to access the default page ... I got a StackOverflowException, did you know what I am doing wrong :

                AspxWebServer _server = new AspxWebServer();
                _server.Root = new AspxAppDirectory(_appPath); // "C://myApp/Web"
                _server.Port = _appPort; // 8081
                _server.DefaultPages.Add("Default.aspx");
                _server.Start();