l.thee.a
l.thee.a

Reputation: 3341

embedded web/application server

I need to write an user menu for an embedded device (mips linux). The menu has to be accessible from network (web page - AJAX?) and it has to be able to read/write hardware settings. What would be the easiest way to implement such an app/server? Where do I start?

PS: c/c++ preferred. PS 2: I have limited resources

Upvotes: 2

Views: 1382

Answers (3)

Mark Drexler
Mark Drexler

Reputation: 1

You may also consider a commercial server such as the Barracuda Server: http://barracudaserver.com/

Upvotes: -1

simon
simon

Reputation: 5915

If you are running linux you could try thttpd - tiny/turbo/throttling HTTP server

Upvotes: 1

Doug Currie
Doug Currie

Reputation: 41180

Take a look at mongoose embeddable web server.

See this related page on writing web applications.

Upvotes: 2

Related Questions