0
Hello. I am a C# developer and I need to make a configuration application for a Windows Service. I thought of something similar to those internet modem configuration applications that run directly in the Browser. Is there a way to run such an application on a local machine without the need to install IIS on this machine? What is the best approach to solving this problem? Some documentation on the subject is already helpful. Thank you.
The modem itself has a page server. It doesn’t have to be an IIS, but you need to make your own mini-page server to access it from your browser. With C# you have everything practically ready to make this mini-server, it is more a matter of understanding the language and the HTTP protocol.
– Bacco
I did not analyze the quality of the code, but in a quick search by Webserver C# it already came to me as one of the first results: http://www.codeproject.com/Articles/1505/Create-your-own-Web-Server-using-C
– Bacco