Questions tagged [wildfly-10]

WildFly, formerly known as JBoss AS, is an application server developed by Red Hat. WildFly is written in Java, and implements the Java Platform, Enterprise Edition (Java EE) 7 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.

flexible, lightweight, managed application runtime that helps you build applications in java

932 questions
8
votes
2 answers

AMQ119099: Unable to authenticate cluster user: ACTIVEMQ.CLUSTER.ADMIN.USER

When I was starting Wildfly 10 with full-ha profile, I was getting below error in the log file. AMQ119099: Unable to authenticate cluster user: ACTIVEMQ.CLUSTER.ADMIN.USER Even after this error, server was in running state.
Indraraj
  • 255
  • 3
  • 13
8
votes
2 answers

adding jars as deployment in WildFly 10

Is there a way, we can deploy jars as a library/deployment in WildFly 10 like we can do it in weblogic server?. OR can we place the jars in any folder of server and define those dependencies as provided?
MDaniyal
  • 1,097
  • 3
  • 13
  • 29
8
votes
5 answers

DuplicateServiceException JBoss Server

I am getting a weird error when trying to run an EAR on my Wildfly 10 Server. It says .session is already registered, which other similar bugs have supposedly been caused by multiple applications using the same context-root. But I am just deploying…
pasquers
  • 772
  • 1
  • 8
  • 24
8
votes
2 answers

Deploy Spring Boot to Wildfly 10

Has anyone try to deploy an springboot application to wildfly 10 succesfully? i have look for examples but i only found for wildfly 8.2 This is my application class: @SpringBootApplication @EnableEurekaServer @EnableDiscoveryClient public class…
alfespa17
  • 335
  • 1
  • 3
  • 12
7
votes
1 answer

CDI error when attempting to create scaffold with JBoss Forge

I recently discovered this amazing tool Forge. Thanks to everybody involved in making it.I downloaded the latest version 3.7.2 and added the forge executable to my path. All works very well apart from when I: Want to setup JSF to use version 2.2,…
Letholdrus
  • 1,261
  • 3
  • 20
  • 36
7
votes
2 answers

How to send JMS messages from WildFly 10 to remote ActiveMQ

After so much fumbling around the internet, it's a surprise that I can't find a sample configuration for pushing to a remote message queue using JMS in WildFly 10 with ActiveMQ (Artemis). To worsen the situation standalone-full.xml is not bound to a…
Sayo Oladeji
  • 741
  • 4
  • 15
  • 28
7
votes
0 answers

Configure logback in Wildfly

I have terrible problems to figure out how to configure logging via logback in my Java EE application on Wildfly 10. I tried to put slf4j-api-1.7.21.jar, logback-classic-1.1.7.jar and logback-core-1.1.7.jar in my ear in /lib/, add logback.xml to…
gandalfml
  • 908
  • 1
  • 10
  • 23
6
votes
0 answers

How can I connect to JMS inside docker container

We have a docker setup (Windows 10, native docker, compose V3) with multiple containers one of which is running Wildfly 10 with JMS subsystem (ActiveMQ). Everything works fine inside the docker NAT (various services use JMS via in-vm or http…
twyszomirski
  • 106
  • 6
6
votes
1 answer

Wildfly logging pattern elements - Is there a documentation?

I am using Wildfly 10.1 and I would really like to know what logging pattern elements i could use. I found this documentation here: https://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/PatternLayout.html referenced by a Wildfly book. But…
Thomas
  • 620
  • 7
  • 19
6
votes
4 answers

How to implement Recaptcha on keycloak login page

I want to implement recaptcha in keycloak login page like registration page. I extended UsernamePasswordForm class with desired factory class. I even implenmented action required classes as well. but still i can not see that in provider tab to add…
6
votes
2 answers

Avoid timer overlapping in EJB schedule running inside wildfly

I have an EJB timer schedule in a singleton EJB running inside a Wildfly 10.10: @Singleton @Startup @ConcurrencyManagement(ConcurrencyManagementType.BEAN) public class MySingletonBean { public method() { //uses synchronization…
Duloren
  • 2,395
  • 1
  • 25
  • 36
6
votes
0 answers

Wildfly 10.1 CDI / WELD not working for @Any (war inside ear referencing jar in module)

My local instance interFaces (in my java war web-app) is not being injected from a "cdi-able (thejarwithbeansxml.jar)" (beans.xml) jar referenced from my jboss-deployment-structure.xml (referencing the module). Please see below…
Koekiebox
  • 5,793
  • 14
  • 53
  • 88
6
votes
1 answer

Default slsb-strict-max-pool size in Wildfly 10

On wildfly 10 server startup we get slsb-strict-max-pool as 64 2017-08-24 12:51:09,164 INFO [org.jboss.as.ejb3] (MSC service thread 1-5) WFLYEJB0481: Strict pool slsb-strict-max-pool is using a max instance size of 64 (per class), which is derived…
happy
  • 2,550
  • 17
  • 64
  • 109
6
votes
1 answer

How to precompile JSP files in Wildfly 10?

In older versions of JBoss AS, the Tomcat jasper JSPC compiler could be used to precompile JSP pages to ensure that they were all syntactically valid JSP files. According to https://access.redhat.com/solutions/175893, as of JB EAP 6, the JSPC…
Eric B.
  • 23,425
  • 50
  • 169
  • 316
6
votes
3 answers

WildFly can't see OperatingSystemMXBean?

I have this code to read physical memory: com.sun.management.OperatingSystemMXBean os = (com.sun.management.OperatingSystemMXBean)ManagementFactory.getOperatingSystemMXBean(); long physicalMemorySize…
Chupacabras
  • 392
  • 1
  • 5
  • 20
1
2
3
62 63