Either a light-weight web server for embedded systems, or a web server embedded within an application
Questions tagged [embeddedwebserver]
103 questions
6
votes
0 answers
Small embeddable web/HTTP stack for C#?
This might be too much to ask. (Why on earth would I want to depart from IIS after all?)
What I'm looking for is a pretty good embeddable HTTP server. I've looked around, and I'm not yet sold on Kayak. But I haven't found many others.
Can anyone…

lucidquiet
- 6,124
- 7
- 51
- 88
5
votes
4 answers
C++ Web Framework w/ Embedded Server?
I have been looking for a C++ Web Framework that would allow me to build a GUI Control Panel directly into a .dll plugin. In the past I have used Nancy Framework for .NET Projects which was exceptional (was my first time with this type of…
user470760
5
votes
8 answers
Real time embeddable http server library required
Having looked at several available http server libraries I have not yet found what I am looking for and am sure I can't be the first to have this set of requirements.
I need a library which presents an API which is 'pipelined'. Pipelining is used to…

Howard May
- 6,639
- 9
- 35
- 47
5
votes
3 answers
How to implement websockets on an embedded device server?
I am working with an electronics appliance manufacturer to embed LAN based control systems into the products. The idea is to serve up a system configuration/control interface through a web browser so clients never need to install software. We can…

Justin
- 300
- 3
- 11
5
votes
1 answer
Is it possible to restrict NanoHttpd to localhost only?
I am running NanoHttpd on 8080 on my local desktop. I can access the server locally in my browser at http://localhost:8080/. That part is working as expected.
However, I do not want my neighbor (or worse, the world) to also be able to access it at…

martinez314
- 12,162
- 5
- 36
- 63
5
votes
0 answers
Simple web server in Scala
I need a Scala library that provides me a very simple web server.
I need it to provide json content to a web user interface for an application I'm developing so it should be able to return both static pages and generated jSON data.
I saw that there…

mariosangiorgio
- 5,520
- 4
- 32
- 46
4
votes
9 answers
Embedded web server and gui framework for .NET applications
I'm looking for a framework which allows me to manage my application through a webbased GUI (using an embedded webserver) instead of winforms.
Something like this: http://www.webtoolkit.eu/wt but then for .NET
In my code I should be able to…

Toad
- 15,593
- 16
- 82
- 128
4
votes
9 answers
Is there a small classic ASP server like ASP.NET Development server that comes with Visual Studio?
I would like to hear if there is a small classic ASP server, similar to the ASP.NET Development server that comes with Visual Studio?
We are a small group that supports a legacy (classic) ASP site, and would therefore like to have a small server…

PropellerHead
- 929
- 1
- 12
- 27
4
votes
2 answers
Running any web server event loop on a secondary thread
We have a rich backend application that handles messaging/queuing, database queries, and computer vision. An additional feature we need is tcp communication - preferably via http. The point is: this is not primarily a web application. We would…

WestCoastProjects
- 58,982
- 91
- 316
- 560
4
votes
2 answers
Visual Studio 2008 built-in web server needs integrated pipeline mode for Adding Http Header
Using Visual Studio 2008 and built-in web server.
In a Web Handler .ashx file
public void ProcessRequest(HttpContext context) {
context.Response.ContentType = MimeType_text_xvcard;
…

John K
- 28,441
- 31
- 139
- 229
4
votes
2 answers
How to provide a web interface for a .Net application
I have a .Net (c#) application with a WinForms GUI. Besides that, I want to provide a secondary web GUI so the application can be controlled from another pc at the home of the user.
So part of the webpages (the values) should be filled in by the…

Coder14
- 1,305
- 1
- 9
- 26
4
votes
1 answer
Embedded HTTP Server for Android
I am looking for a embedded HTTP server for an android device.The HTTP server needs to be a library,so that I can customize the responses(I would be doing some native operations on the device like switching on wifi etc... according to the request…

Navin Ilavarasan
- 1,271
- 11
- 15
3
votes
1 answer
Testing RESTFul Spring 3 service with embedded Tomcat 7 / junit under a Maven WebApp project
The aim is to, for each unit test, systematically start a tomcat 7 server, load the spring application (eventually drop / create a schema & init its data in an database) perform unit tests and stop the http server.
It is quite easy to found sample…

nano31
- 31
- 1
- 3
3
votes
2 answers
XMLHttpRequest: Double TCP SYN within a millisecond in Internet Explorer 9
the XMLHttpRequest object causes two TCP SYN Packets when I try to send some POST data.
This happens in less than a millisecond.
I cannot reproduce this behavior in any other browser (tested with the latest Firefox and Google Chrome browser).
Even…

Matthias
- 1,386
- 3
- 24
- 59
3
votes
1 answer
What is the best toolset for making an application that includes a built-in web server?
I want to create an application where the GUI is accessed using a web browser. That way, the program can be used either locally or remotely. I want to be able to compile both PC (using cygwin or mingw) and Linux versions of the program. What is a…

Michael Alford
- 31
- 1