Either a light-weight web server for embedded systems, or a web server embedded within an application
Questions tagged [embeddedwebserver]
103 questions
0
votes
1 answer
Running a local web server with Gradle
My java application produces some visualisations (html, xml+xls) as outputs that cannot be served from the filesystem due to browser safeguards.
I want to make a commant like ./gradlew view that would serve those for me. For example in npm one of…

gcasar
- 729
- 1
- 9
- 22
0
votes
1 answer
http1.1 Keep-Alive without pipelining
I'm implementing a server that is sending to the client a http keep-alive request but I would like that the client does not make pipelining requests. Is there any flag to tell client to not do multiple pipeline requests?
The keep-alive request seams…

KammutierSpule
- 109
- 1
- 5
0
votes
4 answers
Load web content using STM32 WebServer
I'm making a WebServer using STM32F405, the ethernet chip is W5500 from Wiznet.
Wiznet offers an HTTP WebServer demo. However, they use an sd card for loading web content.
I found that Arduino WebServer can load web content without using SD card, it…

dustin2022
- 182
- 2
- 18
0
votes
1 answer
can i deploy a django web app on a web server i can't configure?
So we got a project at uni to create a website. We have not received any specific on what technologies to use, we were only given a theme. These projects will end up hosted on the uni website. The host for the website is:
http://uni.co.uk
The…

SirWinning
- 111
- 8
0
votes
1 answer
C# EmbedIO server: Only the first request is working trying to live stream from FFMPEG
I'm trying to build an HTTP server that will stream dynamic video/audio in the TransportStream format via FFMPEG. I found EmbedIO and it looks like a lightweight yet flexible base for this.
So, I looked at the module examples and built a very basic…

Constantin Groß
- 10,719
- 4
- 24
- 50
0
votes
0 answers
Web Scrape Printer EWS not outputting right
I am trying to scrape my printers Embedded Web Server to get the current print counts and write them to a file. I am very new to this and was trying to print the entire html to see if I had set up the script correctly so far and the output was way…

CoolJacketMan
- 1
- 2
0
votes
2 answers
In process web-server for MVC2
I'm working on a project that requires an in process web server to run the web based UI.
The best option I have come across is CassiniDev
EDIT: did some tests and noticed that issue isn't synchronous way of processing requests, it has to do with…

kay.one
- 7,622
- 6
- 55
- 74
0
votes
2 answers
Delphi 2006 Standalone Webserver compilation error
I'm trying to create a SOAP Server application that is a stand alone application (no need for IIS to be configured). The problem is that I get this error when trying to compile:
I get the error
SockApp was compiled with a different version of…

Mattl
- 1,588
- 3
- 24
- 49
0
votes
1 answer
Secure Communication between a webpage and process without CGI?
I work for Company A, a software company integrating our platform onto a product by Company B, a hardware company. On Company B's product, Company B's process is running to manage the device, and within the process there is a webserver which is…

JD Reese
- 113
- 1
- 5
0
votes
2 answers
embedded Tomcat 6 - shut down after start
I wanna use an embedded Tomcat V6. The code works perfectly, but only as long as the programm is running. So if there is no Thread.Sleep it will exit immediately, otherwiese keep on running till the time is up.
How can I keep the emmbedded Tomcat…

Chris
- 1
0
votes
1 answer
how to show files in current directory with embedded php webserver (as command line)
I want to run the simple embedded webserver from php via command line
php -S 0.0.0.0:8000
and let it show the content of the current directory.
As of the man page the only possible additional option to -S is -t for the document root. I know I can…

erik
- 2,278
- 1
- 23
- 30
0
votes
1 answer
Is there some http GET response that I can add to fix an encoding problem on the client web browser?
I have an embedded web server written in C using uIP libraries, in a microcontroller, which outputs the following static text in response to an http get. It is shown below as a C literal string:
"HTTP/1.0 200 OK\r\n"
"Server: UIP/1.0…

Warren P
- 65,725
- 40
- 181
- 316
0
votes
1 answer
when i start my emmbedt web server on port 8080 i get windows security alert , can i avoid it?
is there any way to avoid this when using embedded web server in windows?
i don't want users to be scare

user63898
- 29,839
- 85
- 272
- 514
0
votes
1 answer
if i need oparete small web server in my application ,does it recognase as virus?
i need to operate smell web server in my application play flash swf files in my embedded browser , this application will be distributed to local users to desktop users
what is the best way to implement it in desktop application i mean ports / local…

user63898
- 29,839
- 85
- 272
- 514
0
votes
1 answer
Tools to design code for dynamic web interface
I am looking for an easy way to design a simple web interface for a java application to control some settings from another computer.
I have looked at a few possibilites like embedding a Jetty or Tomcat server. Altho i guess Jetty will be better…

Ryu Kajiya
- 255
- 1
- 3
- 16