How to make a web app localhost modem configurator type?

Asked

Viewed 87 times

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.

  • 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

1 answer

0


You can use . net class HttpListener. Documentation and example here. Look for more examples on the internet, there are lots, like this on github.

If you need a feature but elaborate, maybe an option would be to use lighhttpd or Mongoosis.

  • Please post examples, as links can stay off and here with empty references. Posting examples, you help others at any time.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.