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
9
votes
2 answers

What is http-remoting Protocol

I have set up an EJB on Wildfly and wrote a client to access it. With the protocol "http-remoting" it works fine. Unfortunately, I am not sure about the functional details of http-remoting. I guess this is a http-tunnel of the RMI protocol. But I…
nikmaster
  • 421
  • 1
  • 6
  • 19
9
votes
4 answers

Wildfly in Eclipse is adding the Maven SNAPSHOT to the web context

I'm having a new problem when we moved to a Wildfly 8.x server in eclipse. My project is called PayloadSvc. The first part of the pom.xml looks like…
user3669653
  • 354
  • 1
  • 8
  • 15
9
votes
1 answer

How can I serve static resources from outside a war on WildFly

I may be wrong, but to my understanding, the following must be possible in WildFly: It must be possible to put a link into my JSF views (i. e. the xhtml files) to a resource (pdf, image, other xhtml file) that is already on the WildFly server. I can…
user3629892
  • 2,960
  • 9
  • 33
  • 64
9
votes
1 answer

WildFly 9.0.1 WFLYCTL0158 Handler "CONSOLE" is not found

Suddenly (after working fine for some time), WildFly 9.0.1 (and also 9.0.2) seem to have somehow lost the CONSOLE handler for logging. When trying to debug an application from NetBeans 8.0.2, the Console window shows: ERROR [stderr] (default…
mickey
  • 99
  • 1
  • 6
9
votes
2 answers

Metaspace memory concumption issues of Java 8 applications deployed on Wildfly 8.2.1

Issue description I noticed that each deployment of one of our Java8 application on Wildfly 8.2.1 uses approximately 30-40 MBs from Metaspace memory pool. That is fine, but the thing is that once I am redeploying the same app the Metaspace memory…
Andrei
  • 303
  • 3
  • 7
9
votes
1 answer

JCA Glassfish to JBoss/Wildfly

I need to be able to deploy .ear file containing .rar resource adapter to jBoss/Wildfly. It has been working previously for GF. Problem is that in my .war file (which is also part of the .ear) I have this web.xml:
Zveratko
  • 2,663
  • 6
  • 35
  • 64
9
votes
2 answers

Spring Security Kerberos chained with basic

I have a hopefully quick question about Spring Security. I am looking for a solution to integrate security into our application which provides SSO but HTTP basic as well. One of the automated pieces of our system can only support basic…
TheNorthWes
  • 2,661
  • 19
  • 35
9
votes
4 answers

how to see actual body sent from restassured

I have created a jax-rs rest api and tested it with rest-assured. All tests are green. Now I am trying to create an html/js front end for it. My problem is I do not know how my json objects should look like to be accepted by my rest api. Thanks to…
dermoritz
  • 12,519
  • 25
  • 97
  • 185
9
votes
2 answers

Spring boot and JBoss 8 Wildfly log configuration application

I have a Spring boot application prepare to be a WAR. It deploys without problems on Tomcat 8 (embedded or standalone) as well as on JBoss 8 Wildfly. But while on Tomcat we have had configured working logback configuration on JBoos it does not work…
Piotr Kończak
  • 193
  • 1
  • 3
  • 10
9
votes
3 answers

Memory requirements for WildFly

I never found an official documentation about it and I generally install WildFly 8.x on servers with, at least, 4GB. How much memory should my server have in order to run a WildFly instance? Is there a minimum recommended?
cassiomolin
  • 124,154
  • 35
  • 280
  • 359
9
votes
3 answers

Start and configure a WildFly server and deploy the app using wildfly-maven-plugin in 1 maven run

I want to have a way to run maven so that it will: start a WildFly server instance in standalone mode (wildfly:run) deploy the hsqldb driver add a datasource deploy the application The problem is that: wildfly:run blocks so no other maven goals…
Adam Siemion
  • 15,569
  • 7
  • 58
  • 92
9
votes
1 answer

How to set deployment order of two ears in Wildfly

I've some issue regarding the deployment order of two applications inside Wildfly 8.1. The problem is that some modules of app2.ear depends of modules from app1.ear, but app1.ear is deployed after app2.ear. I've tried to specify a dependency for…
Starena
  • 103
  • 1
  • 5
9
votes
1 answer

CDI can't set @Singleton into @Provider in @Requestscoped REST service after redeploy on WildFly

I have AuthenticationFilter and it injects UserController which is annotated with @Singleton. When I deploy my application for the first time - everything is all right, but when I redeploy application and then I try to get something from whichever…
Ziemo
  • 941
  • 8
  • 27
9
votes
6 answers

Wildfly configuration with DataSource

this is the first time I am trying to setup datasource in my Wildfly server. I tried to follow some tutorials which I found on Google but it still doesn't work. I am working on a web service but I keep getting some errors when I deploy my .war…
Ilhami
  • 131
  • 1
  • 2
  • 11
9
votes
3 answers

javax.ejb.EJBAccessException: JBAS013323: Invalid User

On my way to migrate from JBoss 7 to WildFly, I encountered another problem. When calling an rest service which is protected by @RolesAllowed("ADMIN") I get the following error: 13:46:44,359 ERROR [org.jboss.as.ejb3.invocation] (default task-1)…
mkuff
  • 1,620
  • 6
  • 27
  • 39