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
0
votes
1 answer

Keycloak - Show a message if a user is blocked

How can I show a message if a user is blocked after a brute force detection ? I'm using keycloak 2.0.0 and I keep having the same error "Invalid username or password." Thanks UPDATE : it seems like the issue has already been detected in the version…
Ismail H
  • 4,226
  • 2
  • 38
  • 61
0
votes
1 answer

How to: convert namingAlias from Jboss5 to Wildfly10 syntax

How do i convert the following jboss 5 configuration into Wildfly10 syntax.
sarmahdi
  • 1,098
  • 4
  • 21
  • 61
0
votes
2 answers

Jconsole cannot connect to local jmx application

I have a Spring boot project where I use spring-boot-starter-actuator and io.dropwizard.metrics. org.springframework.boot spring-boot-starter-actuator
YLombardi
  • 1,755
  • 5
  • 24
  • 45
0
votes
2 answers

Wildfly CLI deployment in try/catch always exists with code 1

I have a rather simple deployment script for wildfly 10 cli: try deploy dummy.war --server-groups=main-server-group catch deploy dummy.war --force end-try The script is run from a bash script. The problem is that the bash…
noidic
  • 23
  • 3
0
votes
2 answers

Dependecy Injection not working

my qualifier is : @Qualifier @Target({ TYPE, METHOD, PARAMETER, FIELD }) @Retention(RUNTIME) @Documented public @interface JPADAOQ { } this is the bean that i want inject @JPADAOQ @ApplicationScoped public class PlotDaoImpl extends JpaDao
jsf
  • 68
  • 3
  • 13
0
votes
1 answer

Why is my EntityManager null in my Quartz Job on Wildfly 10?

I'm trying to implement a batch upload job in my app running on Wildfly 10. I want to create a Quartz job that will download some files and load them in the database. However when my job runs the entitymanager is always null. How can I get my…
Mindlayr
  • 13
  • 5
0
votes
1 answer

JNDI @Resource not found in Wildfly 10

I'm trying to access to JNDI Oracle datasource through @Resource annotation in RestEasy webservice on Wildfly 10, but null is returned. It works with InitialContext.lookup method. This my java code: @Path("/rest") public class ServiceTest { …
user1151816
  • 187
  • 4
  • 13
0
votes
1 answer

Suppress exception in Wildfly log

I want some Exceptions to not appear in the server's console log. I tried to set a filter in standalone.xml but the exception still shows up.
sinclair
  • 2,812
  • 4
  • 24
  • 53
0
votes
0 answers

Any good reason why Wildfly caches responses marked with 'Cache-control: private'?

I built a JavaEE backend, offering various REST endpoints. Some endpoints are only available for logged in users. To make those responses cachable by browsers, I added the 'cache-control: private' to them. RestEasy offers that possibility by…
DXTR66
  • 563
  • 5
  • 17
0
votes
1 answer

How can I set distinct-name on Wildfly?

I try EJB invocations from a client to a server, they are actually same copied ear files each other and on same machine. I think that I must set "distinct-name" in somewhere, but I can not find it. WildFly Developer Guide - EJB invocations from a…
0
votes
1 answer

Wildfly 10 Hibernate Lazy Fetch not working

I am using Wildfly 10 with hibernate and I observed that Lazy Fetches on @ManyToOne are ignored. @Entity @Table(name = "storytitles") public class Storytitle implements Serializable { @Id private Long sid; …
mkuff
  • 1,620
  • 6
  • 27
  • 39
0
votes
1 answer

Wildfly 10 HA Clustering On AWS Does not work

I am trying to set up an HA Clustering on Amazon Web Service with Wildfly-10. My standalone-ha.xml configuration is ...
xxlali
  • 996
  • 2
  • 15
  • 43
0
votes
1 answer

NetBeans 8.1 won't start WildFly 10 server

Sometimes (~20% probability) when starting maven application at NetBeans my WildFly won't start. In console I see infinited loop of messages: 2016-06-07 09:04:44,689 INFO [org.jboss.msc] (main) JBoss MSC version 1.2.6.Final 2016-06-07…
0
votes
1 answer

Wildfly 10 - Deploy an application with newer version of jackson

I have an application (build with maven, packaged as war-file) that requires jackson-core version 2.6.6. Wildfly 10 already has jackson but in version 2.5.4. What can i do to successfully deploy my application?
Philipp
  • 4,180
  • 7
  • 27
  • 41
0
votes
2 answers

wildfly migration from AS 7 to WF10

I am new to WildFly Server. I am upgrading server from AS7 to Wildfly10. How to add JARS in WILDFLY10. In Error Log: i am getting missing Dependencies(Is this because of not reading JARS?).
Abhinay
  • 1
  • 2