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
1
vote
1 answer

Wildfly HTTP-only redirect

Quick and dirty fix needed here if possible... We've been running a bunch of REST services on a Wildfly installation for a few years. The server isn't for public use -- on the main https://ourserver.com page we have a redirect which points…
1
vote
2 answers

KeyCloak WildFly Standlone module MySQL

I am trying to deploy a WildFly KeyCloak Server in standalone Mode. This works fine when I just do nothing but now I want to add a Datasource of MySQL. Therefore I have to add a driver i am using the: mysql-connector-java-8.0.20.jar. To add the…
SebNik
  • 880
  • 3
  • 10
  • 21
1
vote
1 answer

deploying a project to wildfly server getting issues with required service are not installed

I have created the maridb folder inside Wildfly/module.../mariadb/ and added the required module.xml file and appropriate jar file. 08:36:58,152 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation…
Sarabjeet
  • 15
  • 7
1
vote
0 answers

How to verify wildfly web server is using added keystore file for https connection?

I have created a self-signed certificate(public_certificate.crt), private key file(private_key.pem). and these are stored in keystore file keystore.jks. I have configured the same keystore.jks file in the standalone.xml file of widlfly 10 in two…
Rohit
  • 406
  • 1
  • 5
  • 21
1
vote
1 answer

Why don't System.out.printlin, and Logger work in my websocket?

Can anyone tell me why why nothing I log from my class, and nothing I print using System.out.println, shows up in the log or on the console? My websocket endpoint class is named "org.america3.websockets.sockets.WSEndPoint" I know it successfully…
George
  • 509
  • 2
  • 9
  • 25
1
vote
1 answer

Disable Host name verification in Solr SSL setup using self-signed certificate

I am using Solr as search server and saving all my data in Solr. I am using Solr version 5.5.2. Solr is running in SSL mode with self signed certificate with hostname as localhost. I can not add hostname here as at the time of certificate generation…
Prakash Boda
  • 808
  • 7
  • 21
1
vote
1 answer

How to view previous wildfly server.log in openshift environment

Trying to identify the cause of restart of the wildfly application in a openshift POD: POD Describe shows no restart for the POD. oc logs xxx --previous does not find any entry. Wildfly log directory holds entry for the current server.log. I…
1
vote
2 answers

Wildfly 10 to Wildfly 16 : EJB Scheduler stuck, Not able to undeploy/disable deployments and need to kill server

We have General Filemover Service which is scheduled and file moves from one to other location. We are migrating from Wildfly 10 to Wildfly 16 and facing this issue in Wildfly 16. In Wildfly 16, It is giving strange behavior i.e when timer stuck and…
fatherazrael
  • 5,511
  • 16
  • 71
  • 155
1
vote
0 answers

Wildfly’s first PDF document generation using Apache FOP after server reboot takes a lot of time

On Wildfly 10.0 deployed EAR application, in which is generated PDF document. Generation occurs during a call to the REST service and uses Apache FOP 2.3. When the service is first called after restarting / re-deploying the application generation…
1
vote
0 answers

How to enable HTTP2 for Wildfly 10.1

I am trying to enable HTTP2 on wildfly 10.1 . According to official declarations all I had to do was point the browser to port 8443. I did so and indeed the test certs were automatically created. From the…
workaround
  • 498
  • 6
  • 19
1
vote
1 answer

How to determine supported cipher suites for Wildfly 10

How can I determine which cipher suites are supported by Wildlfly 10? The documentation just states that there is an option "enabled-cipher-suites". Background: I'm trying to configure various cipher suites. Example:
Yeti
  • 1,108
  • 19
  • 28
1
vote
1 answer

Unable to import the javax.ejb.Schedules and the javax.ejb.Schedule annotation

I am using WildFly 10.1 Final and whant to import javax.ejb.Schedule and javax.ejb.Schedules annotations. However, eclipse is not able to resolve them at compile time. I read this question: Import javax.ejb.Schedule cannot be resolved but this…
Alex Mi
  • 1,409
  • 2
  • 21
  • 35
1
vote
1 answer

How to configure JavaMailSender on Wildfly14

I'm wanna configure Mail Sender on Wildfly14. Could anyone tell me the way to configure it from start to end please. I successfully configure on application.property, but I wanna store that host, username and password on wildfly instead of…
Khong Minh
  • 23
  • 9
1
vote
1 answer

FINE logging org.postgresql.jdbc.PgConnection setAutoCommit = false

I was facing the issue with Postgres Driver which was 9.1-901.jdbc4 and my database server was Postgres 10.I was getting issue in bulk update so I tried to change the driver to version 42.2.5.Following is the dependency:-
Divya
  • 87
  • 1
  • 10
1
vote
1 answer

WildFly10 log as JSON

I created a class to log requests (and responses) received by a JEE7 REST API. The class uses SLF4J and logback to construct a log event in JSON format such as { "timestamp" : "2019-05-14 11:46:40.419", "level" : "INFO", "thread" : "default…
Cec
  • 1,726
  • 3
  • 18
  • 31