How to make a localhost modem application? [closed]

0

Hello. I am a C # developer and need to make an application for configuring a Windows Service. I thought of something like those internet modem setup applications that run directly on the browser. Is there a way to run an application like this on a local machine without the need to install IIS on this machine? What is the best approach to solve this problem? Some documentation on the subject is already helpful. Thank you.

    
asked by anonymous 02.05.2016 / 21:28

1 answer

0

You can use class .net HttpListener . Documentation and example here . Look for more examples on the internet, there's a lot like this in the github .

If you need more elaborate functionality, maybe an option would be to use lighhttpd or mongoose.

    
03.05.2016 / 13:11