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
1 answer
WildFly 9.0.2 failed jax-ws simple war deployment
I wanted to experiment with the WildFly AS. Created a very simple jax-ws example endpoint:
import javax.jws.WebService;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.ejb.Stateless;
@WebService(serviceName =…

R. Gosz
- 1
- 1
0
votes
1 answer
Can't get utf-8 upload file name in servlet on server wildfly 9.0.2
I want to upload image using servlet with server wildfy 9.0.2. But i can't get unicode utf-8 upload file name. I use code like below:
-upload.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>

Ma YongChhin
- 427
- 3
- 10
- 24
0
votes
1 answer
Hibernate Schema Export failure without error
Since monday the error occurs, that the data schema is no longer exported correctly. The database tables are not created, even though there are no errors visible in the console log. This error also occures in earlier versions that ran perfectly fine…

M.Franke
- 1
- 1
0
votes
0 answers
Can't enable application after deployment in wildfly 9.0.2 console
I use wildfly 9.0.2.Final and want to deploy an application by console like in the picture below:
After I add MyApp.war I click on view -> Enable -> Confirm. It gives the following error. What am I doing wrong?
unable to modify deployment.

Ma YongChhin
- 427
- 3
- 10
- 24
0
votes
1 answer
ActiveMQ queue not consumed from Spring Integration app
I have a spring integration (4.1.6) app running on Wildfly 9.0.1 with AcitveMQ 5.13. I'm only using about 11 queues.
I have one queue that is getting stuck and the messages aren't consumed (Mostly). Every other queue I have gets consumed fine right…

Joseph Nelson
- 93
- 10
0
votes
1 answer
Trying to use mockito with Arquillian but having some problems
I was tring to use mockito with arquillian.
I used with simple JUnit and it runs fine although i am trying to figure out the deployment for arquillian which is where i think the problem is !!!
Can anyone help me to figure out ?
Thank you.
Here is…

Sanket Patel
- 308
- 3
- 19
0
votes
0 answers
JNDI lookup issue in WildFly - 9.0.2 Final for accessing JMS hornetq via spring JMS listener with connection factory
I am configuring JNDI look parameters for getting connection factory to consume messages using Spring JMS listener from web application.
It is throwing below error,
"No connection Provider avilable for http-remoting"
And we are using below…

vijayb
- 1
- 1
0
votes
1 answer
JBoss(WildFly) doesn't detect css files for index.html
Here is my directory structure.
WebContent
META-INF
WEB-INF
WebSites
Index
index.html
css
animate.css
In web.xml I specified welcome-file list as >/WebSites/Index/index.html.
Then the html…

Jithin Sebastian
- 511
- 1
- 6
- 19
0
votes
0 answers
Enable https on localhost on WildFly 9.0.1 release
I am trying to run localhost in secure mode https://localhost:8080
I have done some changes to standalone xml as below

Patan
- 17,073
- 36
- 124
- 198
0
votes
1 answer
Determining cause for failed remote EJB invocation
I recently successfully migrated j-lawyer.org from JBoss 6 to Wildfly 9.0.2 and have the following question:
I am using a Swing application that accesses remote EJBs (with security enabled). When launching the application, the user has an option to…

j-dimension
- 119
- 10
0
votes
1 answer
Unexpected element '{urn:jboss:domain:keycloak:1.0}subsystem
Happy New Year to all.
I have a keycloak/wildfly question.
I am attempting to secure my war for WildFly 9.0.2.Final deployment. I follow the directions in section 7.2.1 of…

user3452631
- 3
- 1
- 3
0
votes
1 answer
Server Side Caching
I have a standalone WildFly 9.0.2 and I want to cache on the server side the responses for certain requests.
Some of the requests are available for all users (visitors), others should be available only to authenticated users.
I do not understand…

George Michael
- 234
- 2
- 12
0
votes
0 answers
How can I load Java EE application dependency from WildFly modules
I am migrating my JBoss from 4.0.5 to WildFly 9.0.2 release, and my application has some dependency from JRE/lib/rt.jar, but when I deploy that application on WildFly, application gives error like ClassNotFoundException. If I add rt.jar as…

Alpesh Jikadra
- 1,692
- 3
- 18
- 38
0
votes
0 answers
Deployment of OpenBravo to Jboss Wildfly error
I am trying to deploy a custom build of OpenBravo3.0 to JBoss Wildfly wildfly-9.0.2.Final.
The OpenBravo source is downloaded at http://wiki.openbravo.com/wiki/Installation/Custom/Download_Tarball and I did an ant build by issuing ant…

user2176499
- 363
- 3
- 16
0
votes
1 answer
Deployment via Wildfly native management api
I'm trying to deploy a web application on Wilfly 9 using the native management api. How does a correct request look like in that case? When using CLI, the command would be
$JBOSS_CLI --connect --command="deploy /path/to/war"
but it's not meeting…

hoefling
- 59,418
- 12
- 147
- 194