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.
Questions tagged [wildfly-11]
114 questions
8
votes
3 answers
Keycloak Redirect URI is adding port zero to the url
Encountered redirect_uri error in keycloak. Found same issue logged at JIRA KEYCLOAK-7237, just want to check any work around? Anyone can help? Thank you in advance.
2018-06-30 11:34:13,996 WARN [org.keycloak.events] (default task-8)…
user3550587
4
votes
1 answer
Is there any recommended Metaspace setup size for Wildfly?
Is there any best practice for Metaspace Size with WildFly?
Example, for the max heap memory I'd the following setup:
((Memory without Wildfly running) * 2) - (Total amount of available memory)
I know that Metaspace auto increase if I don't specify…

Guilherme Bernardi
- 490
- 1
- 6
- 18
4
votes
1 answer
"No resource method found for GET, return 405 with Allow header" but doing a POST request
I'm having a problem accessing my rest endpoint. I'm trying to do a login with a POST request, but keep getting
ERROR [org.jboss.resteasy.resteasy_jaxrs.i18n] (default task-36) RESTEASY002010: Failed to execute: javax.ws.rs.NotAllowedException:…

Peter Frisch
- 53
- 1
- 1
- 5
4
votes
1 answer
On Wildfly 11 the Microsoft SQL Server driver incorrectly trys to connect to localhost
We want to switch from Wildfly 9 to Wildfly 11. We are using the Microsoft SQL Server driver in version 4.2.
We use a Microsoft SQL Server and embed the driver like this:
…

Harold L. Brown
- 8,423
- 11
- 57
- 109
3
votes
0 answers
Netbeans 8.2 + wildfly 11 hot deploy not working
I am using Netbeans 8.2 for maven java web application. I am using Wildfly 11.0.0 application server for running the project.
When i change & save the .jsp file, the netbeans deploying and i can see the changes in the web page while…

Pamba
- 776
- 1
- 16
- 29
3
votes
0 answers
WildFly 11 - JGroups initialization delay
We have a web based application running on WildFly 11 (Migrated from WildFly 9 recently) and we are facing this weird issue when all the nodes in the cluster are started up.
Here is how our application is designed to login and show the home…

Balu
- 938
- 8
- 10
2
votes
3 answers
How to define basePath in Swagger 3.0 inside Wildfly
I integrated Swagger-ui in my wildfly application.
The project is configured through maven with the following (relevant) dependencies:
io.swagger.core.v3
swagger-jaxrs2
…

893
- 185
- 1
- 5
- 14
2
votes
0 answers
java.lang.NoSuchMethodError: com.fasterxml.jackson.dataformat.xml.ser.ToXmlGenerator.getOutputContext() after upgrade wildfly
I was using wildfly8 which has jackson.core in the 2.5 version, now I was migrating to wildfly11 with the 2.9 version of the jackson.core. After upgrading the jackson dependency, I am getting the exception below.
java.lang.NoSuchMethodError:…

Michu93
- 5,058
- 7
- 47
- 80
2
votes
0 answers
Wildfly 11 configure (enable) SSL certificate
I have purchased an SSL online and got the following files:
mydomain.ca file
mydomain.crt file
mydomain.csr file
mydomain.key file
mydomain.pem file
mydomain.pkcs file
I searched for about an hour for tutorials on how to configure SSL on Wildfly…

Blackpanther0001
- 258
- 1
- 3
- 14
2
votes
1 answer
Recommended Heap Configuration
I can not choose optimal configuration for wildfly as. I have a droplet on DigitalOcean and it has 2GB Ram and 1vCPU. I have a social media application with mongodb(login and see your followers). This app triggers the Firebase Cloud Message service…

Cagdas
- 101
- 2
- 9
2
votes
0 answers
Wildfly 12 - EJB invocations from remote servers under domain controller (Elytron)
I am following the instructions from this link: https://developer.jboss.org/people/fjuma/blog/2017/09/08/getting-started-with-ejbs-and-elytron-part-2
Trying to replicate those configurations under domain controller but without success.
I have two…

ethanxyz_0
- 713
- 12
- 37
2
votes
1 answer
Wildfly Undertow File Mimetypes
I want Undertow to serve static files like .jpg, .png, .js, .css, .txt etc...
I edited the undertow subsystem in standalone.xml:

Blackpanther0001
- 258
- 1
- 3
- 14
2
votes
0 answers
Dynamically load class in other WARs inside wildfly 11
Here I am again seeking enlightment. The situation is as follows:
We have a task engine running in Wildfly 11 that depends heavilly in dynamic loading through reflection. Don't need to say that we have an abstract "base" class for everything. It…

Fernando Augusto
- 43
- 3
2
votes
1 answer
How can you configure WildFly to print runtime exceptions?
The environment is a Java program deployed in WildFly 11.0.0.Final and a terminal window that started standalone.sh and remains open showing the output.
Explicit output such as PrintStream#println and Throwable#printStackTrace is printed as…

RaminS
- 2,208
- 4
- 22
- 30
2
votes
2 answers
EJB3 schedule not working correctly
I've been following the example of Adam Bean to do a timer, but it doesn't work properly. I created an @Singleton EJB with a method which is annoted with @Schedule. The application is deployed to a wildfly 11. I have two problems here. The first is,…

Klemens Morbe
- 595
- 9
- 24