Questions tagged [embedded-server]

25 questions
0
votes
1 answer

Local Hostname for embedded web server

I am developing a web server on a microcontroller and use W5500 chip from Wiznet for access to Ethernet. Right now in order to access the web pages, on the browser I have to type in the ip address of the server. How do I give it a hostname, so…
HV16
  • 25
  • 5
0
votes
1 answer

How to hide Tomcat version from error messages when using embedded servers in Java

I have a java application where i'm using embedded Tomcat servers, which looks like this Tomcat tomcat = new Tomcat() I'm creating an embedded tomcat server here. Problem statement whenever there's an error it displays information on which tomcat…
0
votes
1 answer

How do I connect to ActiveMQ Artemis embedded server?

I have an embedded ActiveMQ Artemis application that I have started using below configuration & code: broker.xml
Amit Pokhrel
  • 282
  • 4
  • 21
0
votes
0 answers

Spring Boot - changing web server port programmatically

I'm building a desktop application using Spring Boot, which also uses the embedded web server to serve some generated files. Is there a way I can programmatically change the port the web server runs on? I'm going to allow the user to configure the…
Brad Mace
  • 27,194
  • 17
  • 102
  • 148
0
votes
0 answers

How to send large files with sparkjava framework webserver and Android device?

I have implemented sparkjava framework on Android for embedded web server to serve files from android device, and it is able to list files on web page, but the issue is when downloading file from android device using web interface unable to download…
0
votes
1 answer

Host Application With Embedded Mongoose Server

I have created a standalone exe to provide some REST APIs using embedded mongoose server [ official C version ]. It works fine on my machine on localhost. Now my plan is to run this application on a server from where client applications can use it.…
0
votes
1 answer

Connecting to a local Mongodb Docker container from a local server with the spirit of Microservice

I composed a Mongodb service with Docker on my local machine, and the hostname is configured in docker-compose.yml with syntax container_name: mongodb, then with the spirit of Microservice I started a RESTful API service on a lightweight embedded…
Rui
  • 3,454
  • 6
  • 37
  • 70
0
votes
1 answer

RabbitMQ embedded broker is not starting from spring boot application

I am unable to send message in "CustomerQ" queue of rabbitmq broker. I have configured rabbitmq broker as embedded server through spring boot. package com.testlab.chapter2; import org.springframework.amqp.core.Queue; import…
0
votes
1 answer

How to make this works embedded

I am combining jax-rs HelloWorld example and building executable jar My expectation is to create this hello world with all dependencies inside one JAR file. After extraction of heroku package I add this to the pom.xml (like described in second…
Knight of Ni
  • 1,780
  • 3
  • 20
  • 47
0
votes
7 answers

Web server for embeded system

I have to develop a small web application which would be running on a embedded device. There are many light weight servers like thttpd, lighttpd. The functionality I want is something similar to router/modem configuration page. I am using mpc5200B…
user732362
  • 395
  • 4
  • 10
  • 19
1
2