Questions tagged [wildfly]

WildFly, formerly known as JBoss Application Server, is an open source (LGPL) application server that implements the latest enterprise Java standards.

WildFly is written in Java and as such is usable on any operating system that supports Java.

WildFly was originally developed by JBoss Inc. which was acquired by Red Hat in 2006. It is licensed under the terms of the GNU Lesser General Public License. WildFly is free and open source software.

The renaming to WildFly was done to reduce confusion. The renaming only affects the JBoss Application Server project. The JBoss Community or the Red Hat JBoss product line (with JBoss Enterprise Application Platform) all retain their names. See also the tag.

For further information, visit the WildFly website.

6512 questions
2
votes
0 answers

AWS EC2 with S3 PING Wildfly 8.2 session not shared

The two wildfly instances are not in the same session. I have configured the following parts of the standalone-full-ha.xml :
Laura Liparulo
  • 2,849
  • 26
  • 27
2
votes
1 answer

How do you deploy EARs to Wildfly with Different JAR versions then Wildfly provides?

Consider this use case: We deploy to Wildfly 8.2, which includes many dependencies implicitly including in the classloader by the app server itself. Examples include things like HttpClient. To illustrate this in my example, we'll call this:…
peterl
  • 1,881
  • 4
  • 21
  • 34
2
votes
4 answers

Arquillian wildfly8.2 embedded : JBAS014670: Failed initializing module org.jboss.as.logging

I'm trying to set up a project that uses arquillian to do some kind of integration testing. I already went through some tutorials but can't get my test running. The exception I get is: Cannot not load JBoss LogManager. The LogManager has likely been…
Vandeperre Maarten
  • 556
  • 1
  • 8
  • 21
2
votes
1 answer

Connection to database (MS-SQL) is getting closed randomly after migrating from Jboss 4 to Wildfly 8

I got stuck in one issue due to which we can't make the application live on production. This issue never comes on dev environment. It comes in the QA environment of our project client. It is a random issue comes once or twice a week. Most of the…
SUJIT RAJAN
  • 49
  • 2
  • 4
2
votes
1 answer

EL expressions in Omnifaces CDN resource handler not resolved in Wildfly 9

I am playing around with new Wildfly 9.0.0.Final. After the deployment of my JSF2.2 web application, the Omnifaces2.1 CDNResourceHandler stopped resolving EL expression. My definition in web.xml:
2
votes
0 answers

Unable to stop WildFly 8.2 service on Windows

Details Windows 7 ultimate 32 bit Java 7 Wildfly 8.2 I have installed WildFly as service successfully using below cmd service.bat install /controller ip:9990 /user wildfly /password wildfly But when I am trying to stop with below…
happy
  • 2,550
  • 17
  • 64
  • 109
2
votes
1 answer

Creating security domain using wildfly-maven-plugin has no effect

I found this which uses /subsystem in its command, so I tried it with a different subsystem command (I use one to create a security domain), it builds successfully, but has no effect in standalone.xml.
2
votes
2 answers

Wildfly does not log into a different file using logging profile

I tried to custom my logging using logging-profile, this is my standalone.xml logging-profile configuration:
2
votes
2 answers

Where to save data in a Wildfly web application

So far I had saved files in the database. I want to go the other way and save media files in the filesystem. What is the appropriate place to do so and not risking to lose the media file in case of new deployment/update of the application? I'm…
feder
  • 1,849
  • 2
  • 25
  • 43
2
votes
1 answer

Remove war/ear from all servers configured in domain mode of wildfly with curl script

Below cmd only removes from server group but it doesnt remove from Content Repository. I want to remove war and deploy a fresh one. curl --digest -D - http://username:pwd@localhost:9990/management --header "Content-Type: application/json" -d…
happy
  • 2,550
  • 17
  • 64
  • 109
2
votes
1 answer

MBean of Hornetq is not exposed in WildFly

Although here it is described that JMX is enabled by default in HornetQ, I do not see any MBeans in jconsole, after connectin to the process of WildFly. What do I miss? WildFly 8.2.0.Final HornetQ 2.4.5.Final (here are all component versions in…
V G
  • 18,822
  • 6
  • 51
  • 89
2
votes
1 answer

Wildfly mysql with SSL

I have a web app using a mysql database as its data store. It is currently running in Glassfish and talking to that mysql database with SSL. I am thinking about migrating to Wildfly but I can't seem to create a Wildfly datasource that will talk to…
Bltucker
  • 447
  • 3
  • 9
  • 17
2
votes
2 answers

Wildfly - Infinispan Transactions configuration

I am using Wildfly 8.2 with its included Infinispan (6.0.2) and I am trying to cache all values from some Oracle database table in an Infispan cache. In most cases, it seems to work, but sometimes it does not. When accessing the cache.values()…
user140547
  • 7,750
  • 3
  • 28
  • 80
2
votes
0 answers

EJB programmatical authentification on WildFly

I use JBoss WildFly, Jax-Rs 2.0 and EJB 3.0. I am trying to implement authentication by calling login method in my service. @POST @PermitAll public Response login(AuthLoginElement al) { try { httpRequest.login(al.getUsername(),…
schaffe
  • 399
  • 2
  • 16
2
votes
1 answer

HornetQ using JNDI / remoting when used with WildFly 8.1 cluster

Previously 2 JBoss 6 servers (master & slave) were started with 2 different IP addresses (127.0.0.1 and 127.0.0.2) and those 2 server instances were run in domain mode. The instances used HornetQ to communicate index jobs for Hibernate Search. I'm…