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
0
votes
0 answers
Simple JSP deployment ( 404 - Not Found ) on Wildfly Server
i faced issue while i'm trying to test the deployment of JSP on wildfly-9 Server, its say 404-Not Found while the Same JSP work fine on Tomcat server.
same problem happen for both JSP/Servlet while deployment !!!
the Problem look in configuring the…

muhammad bouabid
- 21
- 7
0
votes
1 answer
Can not set field to com.sun.proxy.$Proxy on Wildfly Webservices
I got an Error on a little Project I am currently working on. I got a EJB Project running on a Wildfly Application Server. This Server is connected to an Oracle Database. This works fine via a Test-Client which I have implemented in Eclipse.…

pepper
- 1
- 1
0
votes
1 answer
Maven + Jacoco + Arquillian +TestNG IT test = stackoverflowError
I am using the last version of jacoco-maven-plugin (0.7.8) and last version of arquillian-jacoco (1.0.0.Alpha9) but when executing IT test i have a stackOverFlowError in BeforeClass Arquillian (I am using maven, testNG, wildfly, jacoco,arquillian…

cyril
- 872
- 6
- 29
0
votes
0 answers
classloading in Wildfly 9
I am deploying my application to Wildfly 9 and I am getting a strange error that resembles class loading problems. The same war file deploys successfully to Tomcat so I am guessing Wildfly is bundling com.google classes and somehow it is interfering…

Farzad
- 1,132
- 9
- 21
0
votes
0 answers
How to setup multiproject structure with maven?
I'm fairly unexperienced and all new to the whole world of build tools so here's my situation: I am developing a webapp with JSF, PrimeFaces and Hibernate on wildfly-9.0.2-final. All java files (incl. ManagedBeans, DAOs, Model classes, etc.) are…

Jonas Bausch
- 185
- 3
- 12
0
votes
3 answers
Include html file uploaded by user
This it what I would like to do: A user uploads a bunch of html files as a zip archive. I unzip that archive and display the html content on the website.
For that, I would like to include the html content into a thymeleaf page. I have tried this so…

user3629892
- 2,960
- 9
- 33
- 64
0
votes
1 answer
hide ip address from JSESSIONID
When I inspect my web application from the browser I get this cookie: JSESSIONID="5Wz6Tjwp74IDYATgzt1W-VP1FmOHMTjmrk4WnbcL.ip-172-39-20-122".
I want to remove the IP address from the JSESSIONID. I'm using Wildfly 9.0.2.

user7345586
- 1
- 1
0
votes
1 answer
Setting up wildfly to start on reboot in ubuntu 16
Setting up wildfly to start on reboot in ubuntu 16 by executing:
sudo update-rc.d /etc/init.d/wildfly defaults
gives the following error:
update-rc.d: error: initscript does not exist: /etc/init.d//etc/init.d/wildfly
what could be the reason

bavon
- 151
- 2
- 14
0
votes
2 answers
Wildfly: How to call my code before deployment of war files
I have 5 wars in my wildfly deployment directory. But before deployment of these war files i want to call some code which will have logic of jndi and database registration for these war files.
I have one approach in which i can create one war file…

user6030195
- 9
- 6
0
votes
0 answers
WildFly does not run main class from custom added module
I have added on custom module to WildFly 9. The JAR file has one main class as below:
package com.demo;
public class Main {
static{
System.out.println("**********************This is from main static********************");
}
…

Alpesh Jikadra
- 1,692
- 3
- 18
- 38
0
votes
1 answer
deploy spring boot app on wildfly 9
I am trying to deploy my spring boot app on Wildfly 9. Here's the main class:
import org.springframework.boot.Banner;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import…

user3813234
- 1,580
- 1
- 29
- 44
0
votes
1 answer
Wildfly 9.0.2 setting https listener
I have been struggling on this for 2 days now. I want to setup https listener on Wildfly 9.0.2.Final on my local Mac. I am new to wildfly. I have copied my wildfly settings (domain.xml and host.xml) from my production environment but on Prod we have…

Swati
- 27
- 1
- 8
0
votes
0 answers
Wildfly 9.0.2 on AIX server : application deploys but don't load for customers
We have a JEE application ( with JSF 2.2 PF & RF ) that we have deployed for many of our customers.
We have it deployed on jboss 4, wildfly 8 and recently we HAD to use wildfly 9.0.2 on an AIX environment.
The application is deployed without…

TheSM
- 59
- 1
- 13
0
votes
1 answer
redeploy on fly war in EAR with multiples war (wildfly)
It is possible to have several war in one EAR.
But is it possible to replace only one war in the EAR while deploying on admin console for example ?
example :
EAR
WAR1
WAR2
then i have to redeploy only WAR1 not entirely EAR

cyril
- 872
- 6
- 29
0
votes
1 answer
jberet, one wildfly instance, multiple datasources: can I use more than one job-repository?
We currently have a set of services each running in their respective wildfly 9.0 instance. Some of them have batch jobs implemented using jberet 1.2.0.
Each wildfly instance has one datasource (jdbc, oracle) for the service and one job-repository…

Dominik
- 141
- 1
- 3
- 14