Questions tagged [embeddedwebserver]

Either a light-weight web server for embedded systems, or a web server embedded within an application

103 questions
1
vote
4 answers

extjs for application (with embedded http server as well)

Is there a framework which allows easy adding of ExtJS to a normal .Net application. This way I only have to create a GUI once, which is then accessible through an embedded webserver. This is great since I then can remote access the…
Toad
  • 15,593
  • 16
  • 82
  • 128
1
vote
2 answers

Embedded Application Server

I'm planning to do a C++ standalone desktop application which uses web / html as the main format of it's documents content. I need suggestions for a good application server that can generate dynamic contents and can be easily embedded in my desktop…
Random Joe
  • 640
  • 4
  • 10
  • 25
1
vote
3 answers

Sending large amounts of data from an ESP8266 server

I am building a web server from an ESP8266 that will send environmental data to any web client as a web page. I'm using the Arduino IDE. The problem is that the data can get rather large at times, and all of the examples I can find show…
David Powell
  • 537
  • 1
  • 4
  • 16
1
vote
0 answers

Chrome blocks file transfer when I use XHR to transfer files to S7 embedded web server when HTTPS used

I was able to implement an embedded web server using the Renesas Synergy S7 microcontroller. The server code is in C and I used the Synergy TCP stack which is Netx Duo and Net Secure(for TLS). The goal of the project is to transfer files from the PC…
jay v
  • 11
  • 3
1
vote
1 answer

Serving a map of strings without 3rd party libraries using http.filesystem in Go (Golang)

I am just starting out with Go and am trying to learn how to build a simple web app without using 3rd party libraries / packages. Using this post and this code as a guideline, I've hacked the following together: package main import ( "bytes" …
nomadist
  • 13
  • 1
  • 4
1
vote
1 answer

Errors when retrieving request body in Mongoose WebServer

I'm working with an old version of mongoose (open source web server) in C, which did not provide native access to the requests payload. In order to support POST and PUT requests, I manually modified it: after mongoose reads the headers, I check if…
phagio
  • 196
  • 1
  • 14
1
vote
2 answers

Open Source C embedded web server supporting SOAP / JSON-RPC based web service and compatible with ARM processor

I am working on a project to embed a web server written in C into a device. The requirement is that it should support web services (SOAP / JSON-RPC) and should be compatible with ARM processor. Any suggestions of specific products or where to look…
Mahendra Liya
  • 12,912
  • 14
  • 88
  • 114
1
vote
1 answer

Existing VB console app needs web interface - Best approach?

I have a visual basic console application that monitors/controls water flow. It 'listens' on a TCP/IP socket and responds to simple commands sent to its port. Naturally since it has recently been documented, it needs to change. It is now requested…
1
vote
1 answer

Embedded Jetty web server not working, handler not invoked

I'm trying to embed Jetty 8 (8.1.18.v20150929) into a Java (jdk1.7.0_67) application. I have the following code: public static final String HTTP_PATH = "/session"; public static final int HTTP_PORT = 9995; // Open the HTTP server for…
Mike Stoddart
  • 488
  • 7
  • 21
1
vote
1 answer

Package NodeWebkit and Web Server

My app is ready for distribution and I have decided I want to use NodeWebkit. Now, the problem is that my app loads local files and I need a web server for that. How can I package both NodeWebkit and some web server together? If it's impossible to…
McLinux
  • 263
  • 1
  • 10
1
vote
0 answers

Retrofit a non-threaded app with a threaded web server

I have an existing c++ embedded application (ARM) with a non-threaded web server. It is used like this: main(){ while(1){ doIO(); doProcess1(); doProcess2(); etc... webServer.poll(); } } The webServer.poll() serves…
k_hampton
  • 23
  • 3
1
vote
2 answers

How can I provide a HTTP management console for a Java application?

I'm writing a Java application that will run for a long time (essentially, it stays running between system restarts) and does a fair bit of intensive near real-time data processing. Data is delivered to the application, some work is done on that…
Andrew
  • 11,894
  • 12
  • 69
  • 85
1
vote
1 answer

Searching for embedded XML-RPC server (with SSL/TLS)

I'm searching for xmlrpc libraries that can be embedded in a C++ application. XmlRpc++ on SourceForge is a very neat solution but doesn't provide HTTPS support. Other RPC-like solutions such as gSOAP are not free for commercial use (or do I get that…
AndiDog
  • 68,631
  • 21
  • 159
  • 205
1
vote
1 answer

application -> database <-> web app communication

I'm working on a personal project that consists of a linux dev board and temperature sensor. I'd like to see a nice web 2.0 real time plot of the tempature from anywhere in the house. Coming from hardware/driver background so i'm not very familar…
Kevin
  • 11
  • 1
1
vote
1 answer

Java embedded webinterface

For a plugin which I created I want to add a webinterface from which you can change settings and do some simple data manipulation. This data manipulation should be done trough sqlquerys. I am using a sqlite database and this is where the problem…