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
1 answer

Undertow (Wildfly8) doesn't handle request parameters

I do migration from Jboss AS7 /EAP6 to Wildfly8 and would like to ask here for any hint about undertow, why it doesn't handle request parameters as catalina does in EAP6. So, I make a call from client to url './client/boom/index.htm?i=1', it comes…
Qu Vad
  • 11
  • 4
0
votes
1 answer

How to view user sessions in WildFly 8.1 using JMX?

In JBoss 5.1, we used JMX to monitor the number of active sessions and few other statistics per session (last accessed time, ...) in our web application using jboss.web MBean activeSessions and listSessionIds to iterate over sessions and call…
Gaël Marziou
  • 16,028
  • 4
  • 38
  • 49
0
votes
0 answers

Wildfly 8.1.0-3 deployment error with Expression language

I have problem with stactrace below during deployment of my simple application in war archive on wildfly 8.1.0-3.fc20 on fedora 20. Same application deployment on binary version of wildfly-8.0.0.Final-SNAPSHOT succeeds. I would be grateful for…
0
votes
1 answer

Undertow multiple handler call

Trying to use Undertow. Here simple example: public class MyExample { private static int SIMPLE_HANDLER_CALL = 0; private static int LIBRE_OFFICE_CALL = 0; public static void main(String[] args) { Undertow server = Undertow.builder() …
abkvandrd
  • 203
  • 1
  • 5
  • 17
0
votes
1 answer

make rest calls to other microservices with undertow

I have a simple websocket server using undertow. How to make HTTP calls to other microservices using UndertowClient from within this method? Any pointers ? @OnMessage public String onMessage(String message) { //Receive request -- make async…
basu76
  • 441
  • 10
  • 19
0
votes
1 answer

Unable to access the request.forwardURI after a 404 redirect

In my grails application I had a custom redirect for "404". Whenever the application used to hit a 404, it used to log the request.forwardURI and redirect the user to a 404 page. But after upgrading to wildfly-8.0.0(also tried 8.1.0 and…
Sandeep
  • 803
  • 8
  • 25
0
votes
1 answer

List of undertow error codes

Is there a list error codes that undertow writes to the to the log file? I sometimes get errors with code UT005022 or with code UT005023 that look the same to me and sometimes different errors with the same error code: 2014-05-04 16:41:10,942 ERROR…
bertolami
  • 2,896
  • 2
  • 24
  • 41
0
votes
1 answer

Configure Undertow Servlet to handle root context

Is there a way to configure Undertow to handle the root context? For example: I've set called setContextPath("/") and I would like to access my app using, for example, http://localhost:8080/ If I access http://localhost:8080//, it works :(. Am I…
Alberto Souza
  • 105
  • 1
  • 8
-1
votes
0 answers

Undertow threads vs Xnio worker threads

I am trying to understand the difference between Undertow.builder().setIoThreads(0); Undertow.builder().setWorkerThreads(0); from this…
Brian
  • 556
  • 6
  • 26
-1
votes
1 answer

Vaadin 24 WEB Push replacing Tomcat with Undertow

I wanted to replace Tomcat in Vaadin. Wanted to replace it with Under / Jetty / Netty. Currently I am using spring boot and replaced tomcat with undertow. Unfortunatelty this setup disables WEB_PUSH in Vaadin. Is there any way around this ? or maybe…
-1
votes
1 answer

How can I set up admin user (to be able to check the server via GUI in an emergency?) in JBOSS EAP 7.1?

Can anyone please tell how can I set up admin user (to be able to check the server via GUI in an emergency? in JBOSS EAP 7.1?
JBOSSUSER
  • 35
  • 9
-1
votes
3 answers

Cannot get request attribute in doPost method

I am trying to update my db entity via a simple java servlet. In my doGet methosd of UpdateFooServlet I am using a query param which is an id of my Foo, I get that Foo object by id from my db and set it as a 'foo' attribute in my request. Later on,…
jimmyrap
  • 99
  • 1
  • 4
  • 17
-1
votes
1 answer

Host RESTHeart on IBM WebSphere

I want to host/run RESTHeart on an IBM WebSphere Application Server (traditional V8.5 or Liberty). For default RESTHeart is made to run on Undertow/JBoss(?). Is there any possibility to do so? I couldn't find anything about that.
Raman
  • 548
  • 1
  • 7
  • 17
-1
votes
1 answer

Hardening and Performance Tuning in JBoss EAP 7

I read through the standard guideline of JBoss EAP 7. It tells how to secure ports, increase the JVM options but does not specifically how to calculate and archive specific measurement. Referencing Apache practice, what should I do if I need…
Stanley Stein
  • 397
  • 1
  • 3
  • 17
-2
votes
1 answer

How to inject a bean into a servlet Filter in Undertow?

Is-it possible to inject a bean into a servlet Filter in Undertow?
1 2 3
35
36