Either a light-weight web server for embedded systems, or a web server embedded within an application
Questions tagged [embeddedwebserver]
103 questions
1
vote
1 answer
Make a cd run a php website NOT on windows
I Have the needs to run a php+sqlite (or mysql...) website from a cd.
For windows I found a nice solution (xampp) but I need to make the cd compatible with osx and linux too!
So I basically want to start a webserver (without having to install it)…

Aleritty
- 25
- 7
0
votes
1 answer
Remote Access a PhoneGap App
I wanted to make an application for the iPad that will be controlled from an iPhone-app. Is there a possibility to access the PhoneGap-App on the iPhone?
I don't want to use an external server because the app should run offline in an Ad-Hoc…

Martin Schilliger
- 829
- 9
- 17
0
votes
1 answer
Can't conncect ESP32 to ESP8266 or vice versa. socket error on fd 48, errno: 104, "Connection reset by peer"
im trying to communicate wia WiFi usin esp8266 and esp32 devices (cuz have 2 esp8266 and 1 esp32). Im using ESPAsyncWebServer library (https://github.com/me-no-dev/ESPAsyncWebServer works via HTTPClient). When i try to connect two esp8266 it works,…

Yigit Sirin
- 1
- 2
0
votes
2 answers
Simple Webserver for Windows for any Scripting Language
I am searching for a simple webserver that runs on windows and which runs code written in a scripting language. A requirement I have is that it supports HTTPS.
On Linux I could use a simple python script and load the OpenSSL module, but that does…

Erik
- 11,944
- 18
- 87
- 126
0
votes
0 answers
How to set up a mobile webserver with reverse SSH and a reverse proxy?
I’m trying to host an apache webserver on a phone with termux, and the final goal is to make this server mobile by using 4G.To achieve this I thought it was possible to use a reverse SSH connection (to set a connection from the phone, wherever he is…

Simon
- 1
- 2
0
votes
0 answers
Location of DEBUG_TRACE logs in Civet web server APIs
I am using Civet web apis (https://github.com/civetweb/civetweb) in my application and the call to mg_write is failing somewhere and there are barely any logs to debug the same. I do see that some DEBUG_TRACE logs are getting written in some failure…

Saj
- 1
0
votes
1 answer
ASP.net vs Basic web front-end for C# Console App
I am interested in making a web front end for my C# Console Application (it is ran on dedicated machines as a service so the user never sees the console) allowing for control of various features. I have very little experience with ASP.net so I need…
user470760
0
votes
3 answers
C# Web Server for displaying Console Output?
I have just finished writing my c# console application, and I am contemplating embedding a web server into it (probably this one http://webserver.codeplex.com). I don't do much in the way over advanced web coding though, so I am not sure if I can do…
user470760
0
votes
1 answer
Sending Data Between ESP32 Client and Server
I am trying to create a simple web interface to control a NeoPixel strip from an ESP32 hosting a client over an access point. Every example I've found on the web so far demonstrates how you can toggle LED's ON/OFF by appending the state to the URL…

Fabian Butkovich
- 13
- 1
- 4
0
votes
1 answer
Can configure and start embedded Tomcat via Spring? OK with Jetty?
Is there a way to configure and setup Embedded Tomcat in Spring? I can do so easily with Jetty 7 that I created a standalone Java application that will start Jetty as webcontainer and finally JUnit test can call the BO via HTTPInvoker.
To me, it…

user889191
- 9
- 1
- 4
0
votes
1 answer
Mobile web server with ASP
Does anyone know of any embeddable Software/libraries for android/ios/etc that will provide web server capabilities for rendering ASP pages?
I'm looking for a solution where you can build an app with the library, point it to an asp page and have it…

benpage
- 4,418
- 3
- 41
- 39
0
votes
1 answer
System requirement for an embedded Python web server
I'm working on an embedded device that runs Linux on ARM7 with 64MB RAM and 64MB storage (12MB free). The device should be configured via web therefore it needs to run an embedded web server. Currently it's using Lighttpd and LUA, but I'm thinking…

AlexStack
- 16,766
- 21
- 72
- 104
0
votes
1 answer
mongoose embedded webserver - not working from other system on same network
https://github.com/cesanta/mongoose/blob/master/examples/http-restful-server/main.c
This below code has hardcoded link https://localhost:8000. The server receives requests from clients using same link on same system. But if sending request with ip…

shrikant lahase
- 19
- 4
0
votes
1 answer
How do I compress an HTML/JAVASCRIPT/CSS web page to be used with a web server running on an embedded device?
I am building a web page that will be served by an embedded device (probably an ESP32) via wifi. Because users of my device won't necessarily have an internet connection, I can't use any CDN's and I am forced to include all libraries (Bootstrap etc)…

Brett
- 59
- 6
0
votes
1 answer
Cygwin64 terminal: Undefined reference to `mbuf_remove`
"I'm learning to create a tcp echo server from cesanta/mongoose https://github.com/cesanta/mongoose/blob/master/examples/tcp_echo_server/echo_server.c but when compiling it with cygwin using Makefile it won't work.
I tried learning Makefile too but…

Dorokun192
- 63
- 7