541 questions
1 vote
1 answer
100 views
IllegalStateException: CDI is not available
I have a JSF application which I'm rebuidung to using JoinFaces and Spring Boot 3 The dependencies I'm using are: jsf-spring-boot-starter version 5.3.13 jakarta.faces:jakarta.faces-api version 4.0.1 ...
0 votes
0 answers
85 views
How to support transfer-encoding: chunked in lucee requests and responses when using Undertow
What I need being able to receive and serve requests that have the header Transfer-Encoding = chunked, the page is returning a few KB of json text. What's happening requests are served correctly when ...
0 votes
1 answer
108 views
Undertow FileUtil cut of UTF-8 characters and concatenate the two half character as a character
If my multipart post is bigger than MultipartConfigElement.fileSizeThreshold, then my post is out of a temporary file. Undertow FileUtils read it so: public static String readFile(InputStream file, ...
-1 votes
1 answer
97 views
Spring Boot Multipart file REST endpoint results in MultipartException (No space left on device)
We are running a Spring Boot Java application on a Heroku instance (our product instance). There is a MultiPart REST endpoint available for an external (hardware) connector to upload some data. This ...
0 votes
0 answers
156 views
Undertow stopped response when using virtual thread in Springboot3.4.1
Environment: 2vCpu, 8G RAM centos8, Jdk 21.0.5 a springboot3.4.1 project using undertow with virtual thread, only a simple restcontroller in the project. modify the log level of undertow and xnio to ...
0 votes
0 answers
88 views
Integrate Keycloak with Spring Boot 3 and Undertow: AbstractMethodError due to missing implementation of io.undertow.servlet.ServletExtension
I am developing a web application using Spring Boot 3 with the Undertow web server. I want to integrate Keycloak as the authentication server for the application, which uses the returned token for ...
1 vote
0 answers
171 views
Sticky Sessions with SpringBoot 3.3 & Undertow?
If there were a way to provide the JSESSIONID value myself, that would solve it. Else Jvm Route seems to be the solution I’m looking for. Alas that is Spring, while nowadays our session is Jakarta. ...
1 vote
1 answer
283 views
Memory issue in JVM in camunda embedded in Wildlfly 31
I have an application which is based on Camunda Engine Embedded in Wildlfy. Camunda version - 7.21 Wildlfy Version - 31 In the BPMN Process it tries to read lot of data using HTTP connector of Camunda....
1 vote
0 answers
361 views
Is there a way for passing multipart config to auto configured JSP Servlet on jboss eap8 with undertow, spring-web-6.1.9?
The problem I am migrating from eap7 to 8 (also from javax to jakarta), and have a request with MultipartFile. My app is using jsp. File gets to the server, in controller it is processed (not written) ...
0 votes
1 answer
115 views
Undertow seems to send corrupt messages when enabled with permessage-deflate
I am using undertow to run a websocket server that sends cursor positions. I am running undertow 2.3.5.Final, on openjdk 11.0.22 2024-01-16. Problem: If I open two tabs, eventually I get a corrupt ...
0 votes
1 answer
42 views
Nginx basic auth fails with Unauthorizaed even on correct credentials
I have an nginx proxy redirect working inside the docker container to redirect all the requests to the correct service. I have a problem with basic_auth since it does not work as expected. Below is a ...
0 votes
1 answer
164 views
Spring-boot undertow access log retention policy
How should I set retention period for spring boot undertow server access logs? From documentation - https://docs.spring.io/spring-boot/docs/current/reference/html/application-properties.html I can see ...
-1 votes
1 answer
71 views
Undertow 2.X ServerSentEventHandler not streaming data to client
I have the following Undertow 2.x ServerSentEventHandler code public class SimpleServer { public static void main(String[] args) { Undertow server = Undertow.builder() ....
1 vote
0 answers
59 views
Undertow web server fails after restart with error "UT000196: Session with id xyz already exists"
I have a Java API server running on undertow with a React/TS front-end. When the user is logged in, if I restart the web server, upon next incoming API request it fails when trying to get or create a ...
0 votes
1 answer
349 views
class org.jboss.resteasy.plugins.server.servlet.HttpServlet30Dispatcher does not implement jakarta.servlet.Servlet
I'm updating dependencies in my project. Below are the corresponding undertow & resteasy dependecies I'm using. <dependency> <groupId>io.undertow</groupId> <artifactId&...