Questions tagged [undertow]

Undertow is a high performance non-blocking webserver that is the new web server in Red Hat's WildFly.

Website: http://undertow.io/

526 questions
0
votes
0 answers

Wildfly 10 - UT000124: renegotiation timed out

So this error has brought development to a complete halt. I'm using client certificate authentication and I keep seeing this error in the logs and for no obvious reason. Granted, I don't have a lot of other information to supply... The wildly config…
0
votes
0 answers

Undertow ReceiverTestCase hang forever

I cloned the Undertow repo from GitHub like described here: http://undertow.io/undertow-docs/undertow-docs-1.3.0/index.html#undertow-faq After that I did a mvn install. Every thing works until the ReceiverTestCase is executed. After that the mvn…
steM
  • 1
  • 2
0
votes
0 answers

Access Undertow static content folder path programatically

I've mapped a static content handler on my Undertow subsystem. However, my app will be deployed independently on different servers, and as such, the physical paths that will be used for static content may differ. Is there a way to obtain…
rion18
  • 1,211
  • 16
  • 22
0
votes
1 answer

Severely truncated attribute while compiling JavaFX Undertow Websockets project for Android with jfxmobile-plugin

I am having an issue while compiling my JavaFX project for Android. The project includes a bunch of libraries, Undertow Websockets is among them. I downloaded all required jars to my lib directory and included them into dependencies / compile files…
velena
  • 33
  • 5
0
votes
1 answer

Error in springboot using undertow server UT005023

I have a spring boot app with a servlet registered with TCompactProtocol factory and periodically I get this error saying 2016-03-03 19:04:04,478 [XNIO-3 task-20] ERROR i.u.request - UT005023: Exception handling request to…
0
votes
1 answer

How to add ALPN to Java 7

Is possible to add ALPN to the boot class path in a Java 7 application? If yes, how can we do it? There're many samples on Internet telling how to do it via Java 8 and Undertow, Tomcat, Jetty, etc.. Do I need to add a security library into my VM? It…
Carlos Alberto
  • 7,761
  • 13
  • 52
  • 72
0
votes
0 answers

Cloning Application deployed in WebSphere to JBoss (WildFly)

I have a application which is running WebSphere Application Server & IBM HTTPS server.And below is the setup Static Content is deployed in IBM HTTPS server under the DocRoot /opt/www/static/xyzweb and configuration is done to point to app jvm &…
user3772505
  • 75
  • 1
  • 9
0
votes
2 answers

wildfly/undertow access to windows certificate store

is it possible to configure wildfly/undertow to acces to a X.509 certificate located in the windows certificate store instead of a file representing the keystore, like :
b. o.
  • 53
  • 8
0
votes
2 answers

How do I configure sslContextParameters for camel-undertow to use with the rest DSL?

currently, I'm using camel-jetty for setting up the rest DSL, it's pretty much straightforward, I create an SSLContextParameters object, and then pass it like this: JettyHttpComponent jetty = context.getComponent("jetty",…
Raul G
  • 473
  • 1
  • 6
  • 18
0
votes
1 answer

RESTEasy with Undertow, accessing HttpServletRequest

I am trying to use RESTEasy with undertow. First I tired the UndertowJaxrsServer source but figured out it is directly using the PathHandler. So I drove another class inheriting from the PathHandler and changed the UndertowJaxrsServer to use that…
Amr Eladawy
  • 4,193
  • 7
  • 34
  • 52
0
votes
0 answers

Build non-http socket based service with undertow

I have a full-stack http based framework uses undertow as network layer. Now I want to add an embedded telnet service into the framework to allow CLI for admin. I am wondering if there is a way to build the telnet server based on undertow, kind of…
Gelin Luo
  • 14,035
  • 27
  • 86
  • 139
0
votes
1 answer

Undertow close connection

I've server on Undertow and all was perfect until I've meet client who doesn't close connections, so server should do it. But undertow doesn't do it and that's why with some time my server runs out of file descriptors permitted by the system. I've…
0
votes
1 answer

Use SNI with Undertow to add multiple domains under one IP

Does Undertow support SNI? In other words, can I run https on multiple domains/certificates on a single IP?
stepanian
  • 11,373
  • 8
  • 43
  • 63
0
votes
1 answer

IllegalArgumentException - 'No servlet context to dispatch to' error in undertow for async servlet

I am getting the below error when undertow tries to dispatch the httpresponse. java.lang.IllegalArgumentException: UT010046: No servlet context at to dispatch to at io.undertow.servlet.spec.AsyncContextImpl.dispatch(AsyncContextImpl.java:173)…
0
votes
1 answer

Spring boot EmbeddedServletContainer - GenericJDBCException - Could not open connection

I'm developing an Spring Boot 1.3 based application with an EmbeddedServletContainer, managing its own DB connections. When the server is left unused for a long time (Probably over the weekend), as there could have been stale connections to the DB,…
rakpan
  • 2,773
  • 4
  • 26
  • 36