WildFly, formerly known as JBoss AS, or simply JBoss, is an application server authored by JBoss, now developed by Red Hat. WildFly is written in Java, and implements the Java Platform, Enterprise Edition (Java EE) 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.
Questions tagged [wildfly-9]
279 questions
1
vote
1 answer
Different behaviour on JAX-RS json (java.util.Date) serialization
I'm migrating my application (Jee7) from Wildfly 9.0.1 to Wildfly 16.0.0.
I noticed different Responses from JAX-RS json (java.util.Date) deserialization on both wildfly version.
Is it a bug or Jee spec changed?
Is there a way to globally fix it for…

Renato Silva
- 108
- 7
1
vote
0 answers
Why does my web application running on WildFly 9 take very long to deploy?
My web application is running on WildFly 9 and the deployment takes a very long time. Sometimes, it exceeds the deployment-timeout and the deployment fails.
As per the log, the deployments halts at the below line for a long duration and then…

Anjan Baradwaj
- 1,219
- 5
- 27
- 54
1
vote
1 answer
Problem rewrite url apache to nodeJS with mod_cluster willdfly
I have apache with mod_cluster for wildfly cluster
I have one virtualhost on 443
I have a nodeJS on 8443 on same server apache
I want to redirect server/api to server:8443 (nodejs)
NODEJS and apache are on same server (apache 443 ,nodejs…

cyril
- 872
- 6
- 29
1
vote
0 answers
NullPointerException when I try to inject the SessionContextImpl in wildfly 9.0.2
I'm migrating a jboss 5.1.0 GA application to Wildfly 9.0.2, in which I manage EJB, in a stateless bean the EJBContext was injected in this way in jboss 5 and it works:
import javax.ejb.EJBContext;
@Stateless
@SecurityDomain…

emiaj
- 11
- 1
1
vote
1 answer
Attachment file name get's changed when send to IMAP mail box from JAVA mail
I am sending mail in with a excel attachment file through JAVA mail. Whenever i send the email to a IMAP email box it's filename gets changed to Untitled attachment as oppose to name i am passing for other email boxes it works file.
I have contacted…

Nomi Khurram
- 101
- 1
- 11
1
vote
0 answers
Load multiple version of asm
In my java ee project I have ws-client that generated by wsimport lib and it use asm 3.3. I use another dependency that work with asm 4.1. I deploy war file in wildfly 9. Wildfly 9 has asm 3.3 as embedded module. I exclude asm module from wildfly…

mohammad_1m2
- 1,571
- 5
- 19
- 38
1
vote
0 answers
WildFly error serving files (unable to find or serve resource from library)
I'm maintaining a Java web application, it's running on wildFly 9.0.2.
Since about a month I noticed some new warning messages in the console while running the application locally. It wasn't happening in our production environments even after a…

Bruno Lamps
- 544
- 6
- 27
1
vote
1 answer
How to make Wildfly 9 log categories with different levels from root-logger?
I read some posts here about similar problems but none was able to help me.
I'm using Wildfly 9.0.2 and want to configure it to log like this:
my.project.category = INFO
my.especial.project.category = DEBUG
the rest = WARN
What I'm trying, with no…

Yoshimit
- 31
- 1
- 4
1
vote
1 answer
Getting jersey exception on wildfly9
My application was initially working fine on Jboss5 and now I deployed it on Wildfly9. And I am getting below exception:
Caused by: java.lang.NoClassDefFoundError: Could not initialize class com.sun.jersey.core.header.MediaTypes
Caused by:…

Swpno
- 173
- 1
- 13
1
vote
0 answers
Wildfly failed to start ISPN000280: Caught exception [java.lang.StackOverflowError]
Getting following exception for our application with wildfly 9.0.1 running in cluster environment, after which wildfly became unresponsive.
It looks similar to bug:[WFLY-5697] ISPN000136: Execution error: CacheListenerException: ISPN000280: Caught…

user7
- 515
- 1
- 7
- 17
1
vote
1 answer
memory usage grows until VM crashes while running Wildfly 9 with Java 8
We are having an issue with virtual servers (VMs) running out of native memory. These VMs are running:
Linux 7.2(Maipo)
Wildfly 9.0.1
Java 1.8.0._151 running with (different JVMs have different heap sizes. They range from 0.5G to 2G)
…

Dave Shifrin
- 11
- 2
1
vote
1 answer
How to reduce the time taken for Wildfly to deploy?
During deployment of my Web application, there is delay/pause of more than 2 minutes due to which the deployment is failing (because of timeout)
The below line is the last line that is printed after which it takes considerable time for the next log…

Anjan Baradwaj
- 1,219
- 5
- 27
- 54
1
vote
0 answers
Unable to see deployed SOAP web service in wildfly 9.0
I am using wildfly 9 and Java 1.8 to deploy a simple SOAP webservice. Here is my code
public class Hello {
@WebMethod
public String sayHello(String name) {
return "Hello" + name;
}
}
When I deploy this in wildfly I cant see this under…

java2017
- 158
- 2
- 12
1
vote
0 answers
Soap service response not being sent in Wildlfy 9.0.2 and CXF 3.0.1 environment
We have a soap service which is built on CXF 3.0.1 using java and it is deployed in Wildlfy 9.0.2. The code uses its own CXF jars and does not use the Wildfly provides CXF module.
There is a client which consumes this service. The client code also…

beingsuplab
- 155
- 1
- 1
- 12
1
vote
1 answer
Connecting apache and Widfly using mod_cluster
I am trying to setup mod_cluster as a reverse proxy for Wildfly 9. When I use http as a protocol (between mod_cluster and Wildfly), everything works just fine (forwarding requests to application server and detecting server).
My problems come up…

Ammaro
- 370
- 2
- 14