Questions tagged [wildfly-18]

Use this tag for version specific questions about Wildfly 18 - the lightweight, managed application runtime. When using this tag also include the more generic [wildfly] tag.

50 questions
5
votes
0 answers

Why do I need org.reactivestreams:reactive-streams, if I'm not making a reactive web application?

I'd like to deploy a spring-boot 2.2.2.RELEASE application onto a Wildfly 18 application server. pom.xml: io.ropi.psf psf-api
László Stahorszki
  • 1,102
  • 7
  • 23
3
votes
0 answers

How to use JAX-RS filters with generated controller interfaces? (JavaEE, Wildfly18)

I have a code generator, that generates interfaces for JAX-RS endpoints and my backend app implements these interfaces, to provide the business logic. The problem now is, that I cannot use name-bound container filters to enhance the business logic…
LostMekkaSoft
  • 143
  • 1
  • 7
3
votes
1 answer

Wildfly 18 log strategy doesn't respect max-backup-index and keeps all server.log files

We have a WildFly 18 with the following logging strategy: ... ... ... …
Xavier Portebois
  • 3,354
  • 6
  • 33
  • 53
3
votes
2 answers

infinispan 9 '' isn't an allowed element

Wildfly 18 eviction tag is not parsing giving Failed to parse configuration error. this is coming when i upgrade Wildfly 11 to 18. In wildfly 11 (infinispan 4) its working fine
user1184777
  • 987
  • 2
  • 19
  • 38
2
votes
2 answers

Wildfly 18 adds server logging pattern before log4j loggers

I have configured my WildFly 18 server in domain mode format and we use log4j logger. When I checked in the server.log file, All logs from log4j are getting logged after wildfly's own logger format. Like below line 1st date and log level is from…
Pmestry
  • 21
  • 3
2
votes
2 answers

Wildfly 18 - WFLYCTL0362: Capabilities required by resource '/subsystem=undertow/server=default-server/http-listener=http' are not available

I am migrating my jboss eap 6 to wildfly 18 as we are moving our application from java 6 to java 8 . I am new to wildfly 18, while starting the server I am getting below error - 09:22:59,671 ERROR [org.jboss.as.controller] (Controller Boot Thread)…
Shrishti Jain
  • 31
  • 1
  • 7
2
votes
1 answer

Java EE 7 EJB Authentication using WildFly - security annotations don't work

I am trying to establish a security domain using wildfly 18.0.1. These are the settings I use: standalone.xml:
I.P.
  • 300
  • 2
  • 16
2
votes
1 answer

How to set transport in the global configuration in order to define a clustered cache - infinispan

Trying to configure cache on thorntail project-defaults.yaml however am stuck with the below issue while tying to start or deploy on wildfly. Error Must have a transport set in the global configuration in order to define a clustered cache. Am not…
Dev Fh
  • 586
  • 7
  • 18
1
vote
1 answer

Store username and password on wildfly and fetch with java

I need to store ldap username and password in wildfly. I did as follow but my manager said is not safe how I did: String ldapCredentials = System.getProperty("ldap.user"); byte[] credDecoded = Base64.getDecoder().decode(ldapCredentials == null ?…
Alex
  • 85
  • 6
1
vote
1 answer

Enable metrics in wildfly domain setup

I am new to wildfly configuration & was trying to enable microprofile smallrye metrics in wildfly for domain mode. Using clustered docker repo, I started domain & host controller locally for wildfly 18. Added following extension & submodule to full…
1
vote
1 answer

EJBCA: Authorization Denied Admin GUI

I am attempting to upgrade EJBCA. I attempted to run this on ubuntu 20.04, locally, using wildfly 18. Wildfly 18 results in this error: "CAUSE: Client certificate or OAuth bearer token required." I have tried this two ways, by importing the…
Edgar
  • 94
  • 7
1
vote
2 answers

JSF1064: Ressource not found! only when i use my Project in Firefox

Im using Java, Wildfly18, Primefaces and JSF in my Project but im getting this Warning! anyone know why im getting this Warning when i use the Project only in Firefox? Any information would be helpful. here is the Server log : WARNING…
Modo
  • 31
  • 5
1
vote
0 answers

Too many open file Descriptors in Wildfly-18

In the application code deployed in wildfly10, if the fileinputstream is not closed programatically (its a miss in the code), during the GC (G1GC) cycle, the orphan references of the opened file input streams are closed, so the number of open file…
1
vote
0 answers

Jackson ContextResolver is loaded but getContext method is not invoked in wildfly 18

All java.util.Date objects are converted like "2020-09-23T09:53:06.93Z[UTC]" but i don't want to include timezone in the serialized date like "2020-09-23T09:53:06.93". So i decided to use Jackson ContextResolver. I have used @Provider annotation and…
Raj Kumar
  • 347
  • 3
  • 11
1
vote
0 answers

log4j is not able to update the log file of wildfly 18 server application

I recently moved my application from java 1.6 to 1.8 and also changed its server from jboss eap 6 to wildfly 18. Server up and running , application is running but logs are not updating in the file. Below is my log4j.xml - which i haven't changed at…
Shrishti Jain
  • 31
  • 1
  • 7
1
2 3 4