Embedded HTTP server: Difference between revisions

Content deleted Content added
m Reverted edits by 75.104.181.136 to last revision by Larree (HG)
Araud (talk | contribs)
No edit summary
Line 23:
* Single thread and multi-thread support.
For every specific project requirements can vary significantly. For example, ROM and RAM footprints can be very serious constraint and limit the choices of the system designer. [[C++]] or [[Java Virtual Machine|JVM]] availability for the system can be another constraint. Frequently performance is an issue, because typical embedded systems run multiple simultaneous tasks and an HTTP server is only one of them and may be configured as a low priority task.
 
== Known implementations ==
 
*Inproc WebServer by [http://www.dcomlab.ru DComLab]. Single dll COM object, exposes ole-automation and IDispatch interfaces. Gives ability even to scripting languages to handle web requests with almost no effort.
*Windows' API Internet* family [http://social.msdn.microsoft.com/Search/en-US?query=InternetOpen&ac=8]
 
 
== See also ==