Questions tagged [wildfly-10]

WildFly, formerly known as JBoss AS, is an application server developed by Red Hat. WildFly is written in Java, and implements the Java Platform, Enterprise Edition (Java EE) 7 specification. It runs on multiple platforms. WildFly is free and open-source software, subject to the requirements of the GNU Lesser General Public License (LGPL), version 2.1.

flexible, lightweight, managed application runtime that helps you build applications in java

932 questions
1
vote
1 answer

API Man plugin - Wildfly dependency conflict

I have written an API Man plugin which uses com.squareup.okhttp3:okhttp:3.11.0 as a dependency, this has a transient dependency on com.squareup.okio:okio:jar:1.14.0. However it appears Wildfly (10.1.0.Final) is using a different version off this…
PDStat
  • 5,513
  • 10
  • 51
  • 86
1
vote
0 answers

deploy spring boot rest application on wildfly10

I have a spring boot rest api which is developed on Java 1.8 and deployed on Wildfly 15. when I try to deploy it on wildfly 10 errors are reported and deployment fails. >2019-04-05 21:47:29,228 WARN [org.jboss.as.server.deployment] (MSC service…
1
vote
0 answers

How to stop wildfly-10.1 loading jar dependency marshalling and river marshalling

Hi want to avoid marshalling and river marshalling jar to load from class path of wildfly, i tried with below but its not working In War file : webapp/WEB-INF/jboss-deployment-structure.xml
utpal sharma
  • 61
  • 1
  • 8
1
vote
2 answers

WildFly 10 with WebSphere MQ 9 : onMessage MDB deploy error

I have an MDB for consuming a message of a Queue, on Jboss EAP 7.0.6 GA, IBM MQ 9 package com.ryzorbent.demo.jms; import javax.ejb.ActivationConfigProperty; import javax.ejb.MessageDriven; import…
RyzorBent
  • 11
  • 2
1
vote
1 answer

Replace Wildfly 10 homepage with a custom application contained in an ear file

I'm trying to replace the Wildfly 10 default homepage (accessed from http://hostname:port) by one of my own web application. I found a good way to do it by removing some parts of the undertow subsystem of the standalone.xml of my wildfly and by…
1
vote
0 answers

Wildfly 10 - XNIO WorkerThread (default I/O-x) with 100% CPU usage

We are changing our cluster topology and facing a 100% CPU issue in the "default I/O-x" thread (org.xnio.nio.WorkerThread). Looks like an infinity loop in the ConduitStreamSinkChannel.write(..) but I'm not sure about it. The problem is intermittent…
ethanxyz_0
  • 713
  • 12
  • 37
1
vote
1 answer

WildFly 10: @Stateful.name property is ignored

I'm trying to put up an EJB Container on JBoss Wildfly on my local machine, and I, with some help, managed to get the container up and running, with the Remote EJB beans recognized. However, I'd like them to be named differently. I have a NAME…
László Stahorszki
  • 1,102
  • 7
  • 23
1
vote
1 answer

Setting request Header in server before Authentication Happens in Keycloak

I'm using keycloak header based authentication to secure a REST API. There I want set a request header field (basically keycloak Autharization Header) before authication happes. Another appocach for this is exlained here : How to get…
ironwood
  • 8,936
  • 15
  • 65
  • 114
1
vote
0 answers

Access remote EJB from separate Wildfly Swarm

My goal: To access @Remote EJB from separate Wildfly Swarm server Current code: Bean on wildfly swarm: @Startup @Singleton public class Bean1 { @Inject private LoginFacade loginFacade; @PostConstruct void setup() { …
asm0dey
  • 2,841
  • 2
  • 20
  • 33
1
vote
1 answer

java.lang.ClassCastException deploying CAS 5.3.3 Maven Overlay WAR on Wildfly 10

I'm deploying CAS 5.3.3 on Wildfly 10, using a Maven Overlay as specified in https://apereo.github.io/cas/5.3.x/installation/Maven-Overlay-Installation.html and using the project template at:…
Angel Palazon
  • 369
  • 1
  • 5
  • 16
1
vote
0 answers

Why doesn't the login module get called on Wildfly with Keycloak?

We have a Wildfly 10 AS, and we have the Keycloak 4.1 SAML Adapter installed according to the description in §3.1.2 of the Keycloak documentation That means, our standalone.xml has loaded the org.keycloak.keycloak-saml-adapter-subsystem…
stmoebius
  • 662
  • 11
  • 30
1
vote
1 answer

Keycloak-secured WildFly REST service returns 401 Unauthorized

I'm using a WildFly application server that hosts a simple Frontend-Backend combination on my local machine. The Frontend is secured through the Keycloak JS adapter and the Backend is supposted to using the Keycloak WildFly adapter. I have the…
1
vote
2 answers

Wildfly 10.1.0 Final Remoting endpoint task threads keep growing

We are using Wildfly 10.1.0 Final. We encountered an OutOfMemoryError caused by threads kept growing. After examining the thread dump. We found that there are thousands of Remoting "endpoint" task-N threads. What are Remoting "endpoint" task-N…
1
vote
0 answers

wildfly 10.1 and logback: contextName return default

I'm using Logback in web application deployed on wildfly 10.1 I'm trying to print the web application name on each line %d{HH:mm:ss.SSS} %contextName [%thread] %level [%logger] - %msg %n but it return default i added the context…
ucf
  • 21
  • 1
  • 2
  • 7
1
vote
1 answer

How to configure remote EJB connection details in wildfly-config.xml for a EJB client application deployed on JBoss EAP 7.1?

How to configure remote EJB connection details in wildfly-config.xml for a EJB client application deployed on JBoss EAP 7.1? I tried placing it inside /META-INF folder of the EJB Jar and configure below tags but it doesn't seems to work pick the…
PARVATHY
  • 122
  • 9