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
Deployment of third party jar in wildfly-9.0.2.Final
In order to visible external jars to more than one application i usually placed external jars at $JBOSS_HOME/server/default/lib directoy in JBOSS 5.x.These jars were automaically up at startp of AS.
How this will i do in wildfly-9.0.2.Final.
@Sam…

user752590
- 111
- 5
- 12
- 29
1
vote
0 answers
WildFly 9 loading jar from deployed war using ContextClassLoader
I have deployed on war under WildFly-9.0.2 and in java code I want to get absolute path for one of the jar which is available under helloworld.war/WEB-INF/lib/ directory, I am trying with following java code…

Alpesh Jikadra
- 1,692
- 3
- 18
- 38
1
vote
0 answers
apache SimpleEmail on Wildfly 9: Connection exception; on Wildfly 8 works perfectly
I used SimpleEmail from org.apache.commons.mail.SimpleEmail successful in Wildfly 8. Now, I migrated to Wildfy 9 and SimpleEmail does every time raise a connection exception.
The exception is thrown on email.send() in the code below:
try
{
Email…

badera
- 1,495
- 2
- 24
- 49
1
vote
1 answer
How to install WildFly 8.x service and WildFly 9.x service side by side on one machine?
I have installed a WildFly 8.x as a service. Now I need to install a WildFly 9.0 as another service on the same Windows server. But I get error which said the service already exists.
I have changed the names in the service.bat and I use the…

Li Bin
- 1,701
- 3
- 12
- 12
1
vote
2 answers
WildFly 9 Access Logging
I am trying to set up access logging using WildFly 9 in Domain mode. I have found a few resources which suggest using something like this in the domain.xml file:

Andrew Arias
- 213
- 4
- 11
1
vote
1 answer
Couldn't deploy a dynamic web project on WildFly server in Eclipse
Created a spring dynamic web project on Eclipse and is running fine on Tomcat and now installed WildFly 9.0.2 final release.
Server is running fine and able to see on http://localhost:8080/ saying "Welcome to WildFly 9.. Your WildFly 9 is…

user5303259
- 27
- 3
- 9
1
vote
0 answers
Having trouble accessing a deployed application in WildFly 9.0.2 release
I'm having a lot of trouble deploying and accessing a war file in WildFly 9.0.2. We're running this on Centos 7 by the way.
So basically we have a war file called crownServices, and we've deployed this war file using the GUI. We also have a…

Whitewind617
- 357
- 1
- 2
- 10
1
vote
0 answers
Apache Axis Webservice on Wildfly 9
I am migrating my JBoss from 4.0.5 to WildFly 9.0.2 release, But I have one Axis web service based on (WSDD) based, but I don't know how to deploy it on WildFly,
When I call some method using
org.apache.axis.client.Call then it is not working.
Does…

Alpesh Jikadra
- 1,692
- 3
- 18
- 38
1
vote
0 answers
Error deploying Maven web project to Wildfly 9
I'm trying to run a maven web project.
I created a maven web project (web archetype) using intellij.
Here's what my POM looks like

SamAko
- 3,485
- 7
- 41
- 77
1
vote
1 answer
How to set up SSL on WildFly 9 Domain Mode?
I currently have a WildFly 9 cluster up and running with access to my application over port 8080, I would like to set up SSL and have access only on port 8443, but I cannot seem to find any documentation for where the security realm and https…

Andrew Arias
- 213
- 4
- 11
1
vote
0 answers
java.lang.reflect.InvocationTargetException When running Java web app with WildFly server
I trying to use WildFly 9.0.1 server to run a Java web application.
I created a new project and select the wildfly server as well as hibernate.
When I try running the server,
I get the following error:
WildFly Application Server…

SamAko
- 3,485
- 7
- 41
- 77
0
votes
0 answers
WildFly 9 - REST User have to login one time before known (UsernamePasswordLoginModule)
We changed from a "org.jboss.security.auth.spi.DatabaseServerLoginModule" to a custom "UsernamePasswordLoginModule".
The login works fine all requests by this user are valid.
But when an other user makes a REST-Call (BASIC-Auth) to this application…

Martin Schlesier
- 41
- 8
0
votes
1 answer
Connect to WildFly-CLI results in WFLYPRT0023: Could not connect to remote+http://127.0.0.1:9990. The connection timed out
we migrate from JBoss 7 to WildFly 9.0.2 and have a problem with the Windows Service on Shutdown.
The start of the service works but when stop the service it stopped with the message (from the wildfly_app-stdout.2022-06-01.log):
Failed to connect to…

Martin Schlesier
- 41
- 8
0
votes
0 answers
Error connecting to Infinispan 13.0.1 cluster from a web application deployed in Wildfly 9 server
I'm trying to connect from a web application deployed in Wildfly 9 server to an Infinispan cluster, and as many tutorials I try I always get the same error.
Any ideas? Thanks!
ERROR:
12:07:31,908 ERROR [org.jboss.as.controller.management-operation]…

Manuel Franqueira
- 326
- 1
- 4
- 13
0
votes
1 answer
How to change time for the server.log file in the wildfly 9?
I have installed the server wildfly 9 on Centos 7 and the time which is registered in server.log is one hour before. The timezone of Centos 7 is Europe/Athens (GMT +03:00) but the time in server.log is registered with timezone GMT +02:00.
Can anyone…