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
2 answers

How to add jar libraries to Wildfly server in lib and lib/ext directories?

I am trying to minimize my myapp.ear file to moving some libs to the server wildfly 10, but the easy only way I found was by including in standalone.xml deployments section, like the following example.
Joe
  • 7,749
  • 19
  • 60
  • 110
1
vote
1 answer

Wildfly Plugin - Datasource - Required services that are not installed

I'm trying to configure a datasource in Wildfly Maven plugin... I have searched for solutions but I didn't find! My project is too basic and I'm following the documentation examples (https://docs.jboss.org/wildfly/plugins/maven/latest) I did the…
Pickles Dog
  • 155
  • 2
  • 11
1
vote
1 answer

WildFly 10 Spring Boot war Deployment Error

I cannot upload and deploy my Spring Boot WAR package application on WildFly 10 because of the following error: Cannot upload deployment: {"WFLYCTL0080: Failed services" =>…
Fact
  • 11
  • 4
1
vote
1 answer

Failed to link a MDB to an inbound resource adapter on Wildfly 10.x - deployment failed

I progammed an simple tcp inbound resource adapter (RA) as an example project on github and deployed it successful to wildfly 10.x with standalone-full configuration. The message listener TcpMessageListener interface is located in the RA and defined…
Jochen Buchholz
  • 370
  • 1
  • 16
1
vote
1 answer

Configure http to https redirection in wildfly

I have a myapp.war deployed on my Wildfly 10.1.0 server, All http request are redirected to https using the 8443 port. Is there a configuration in Wildfly to make an exception for a specific URL ? For example I'd like that…
TheByeByeMan
  • 1,396
  • 2
  • 28
  • 50
1
vote
0 answers

How to apply a cumulative patch on JBoss EAP 7 with other patches installed?

I have a JBoss EAP 7 instance that has already been patched to 7.0.7 with jboss-cli. I also patched it with the Hibernate Validator 6.0.2 Wildfly patch to be able to use JSR 380 - Bean Validation 2.0 (as explained in Hibernate Validator…
Virginie
  • 909
  • 3
  • 12
  • 32
1
vote
3 answers

What's the differences between this Infinispan cache factories for Hibernate second level cache?

I'm trying to figure out the difference between this factories, used in hibernate.cache.region.factory_class property. Example:
Dherik
  • 17,757
  • 11
  • 115
  • 164
1
vote
1 answer

How to configure same context applications to use different machines with ModCluster and Wildfly10

I'm trying to use ModCluster to load balance some servers. We have one single EAR that need to be load balanced by different DNSs. We have this scenario. We need to maintain the same context 'system1' because of backward compatibility 4 servers for…
1
vote
1 answer

WFLYPRT0023: Could not connect to remote+http://127.0.0.1:9990. The connection timed out

I am testing jax-rs web services with Arquillian, and I use an embedded Wildfly 10 container. This is my pom.xml: .. org.jboss.arquillian
Manuel
  • 205
  • 1
  • 4
  • 17
1
vote
0 answers

java.lang.ClassNotFoundException: org.wildfly.security.permission.AbstractNameSetOnlyPermission

I am testing jax-rs web services with Arquillian, and I use an embedded Wildfly 10 container. This is my pom.xml: .. org.jboss.arquillian
Manuel
  • 205
  • 1
  • 4
  • 17
1
vote
1 answer

How to correctly use datasource on Wildfly 10.1.0?

I have configured a local postgres database correctly on WildFly 10.1.0. After adding my datasource on standalone.xml(and deleting the previous ExampleDS that already comes on standadole.xml) and creating my postgres folder on…
rado
  • 5,720
  • 5
  • 29
  • 51
1
vote
1 answer

Error Setting WildFly 10 Resource Adapter (wmq.jmsra.rar)

environment: Server IBM MQ 9, JVM 8, Wildfly 10 Error log wildfly: 2017-09-15 10:53:33,955 WARN [org.jboss.jca.core.connectionmanager.pool.strategy.OnePool] (default task-16) IJ000604: Throwable while attempting to get a new connection: null:…
MIKEL
  • 65
  • 1
  • 1
  • 4
1
vote
1 answer

why wildfly server is asking me to add users even after adding user?

mngmt-users.properties file. The users are added in the file but when I try to run the localhost it says it's running then if I try to view the admin console it is redirecting to http://localhost:9990/error/index_win.html. That tells the server is…
1
vote
0 answers

Migration from tomcat to wildfly

I am migrating my web application from tomcat to wildfly. I was able to deploy the app using a temporary workaround of placing the configurations inside the WEB-INF/web.xml (). But I wanted it outside my war file. Is there any equivalent for…
Aparna
  • 11
  • 1
1
vote
1 answer

How to add request timeout or connection timeout in traditional spring mvc application to prevent ''slow http post vulnerability"?

There are following points to make you understand about my application: I have a traditional spring web application running on Wild-fly. In my application I have view controller and other controllers. I have web.xml file and jboss xml file to…