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

WildFly 10.x always getting HTTP error 403: forbidden

I am getting to know JSF and therefore I try to run a hello world xhtml site. Problem: When accessing the site in the browser I always get the HTTP error code 403: forbidden. I am using eclipse neon and WildFly Server v10. I deploy by using the…
Lao Tse
  • 171
  • 3
  • 12
4
votes
1 answer

WildFly increase request timeouts

I would like to increase timeout for following cases: When I sometimes deploy my app which has for example 80MB, WildFly Management Web Concole shows warning Request timeout When I sometimes restart server (node with host-controller) from the web…
Michal Sipek
  • 536
  • 1
  • 6
  • 23
4
votes
2 answers

RESTeasy Name Binding Annotation Error in Eclipse

I'm trying to bind a name to a filter in JAX-RS so I can secure some methods in the rest service as the following: Secured Name Binding: @NameBinding @Target({ ElementType.TYPE, ElementType.METHOD }) @Retention(value =…
fareed
  • 3,034
  • 6
  • 37
  • 65
4
votes
1 answer

How to set up embedded WildFly server on the fly for testing with Maven

I have a question about how to set up an embedded Wildfly 10 server on the fly for integration testing. org.apache.maven.plugins
Clueless
  • 163
  • 16
4
votes
1 answer

Difference between DefaultJMSConnectionFactory and JmsXA

Out-of-the-box, Wildfly 10 configures a pooled connection factory as part of the JMS subsystem with two entries.
chrisjleu
  • 4,329
  • 7
  • 42
  • 55
4
votes
1 answer

Table missing after hibernate upgrade

we have just upgraded from WildFly 9 to 10 and therefore also upgraded from Hibernate 4 to 5. Our application uses entities that are derived from a abstract super entity that has a generated id field. The super class looks like…
Tom
  • 237
  • 1
  • 2
  • 13
4
votes
2 answers

Wildfly Server, Maven, RestEasy (java.lang.ClassNotFoundException: org.jboss.resteasy.core.ResourceMethod)

I migrate a project from JBOSS to Wildfly Server. I made some changes in standalone.xml and everything works fine, BUT when I send a JSON request from Postman I get the following exception: ERROR [io.undertow.request] (default task-2) UT005023:…
Stefan Zahariev
  • 41
  • 1
  • 1
  • 5
4
votes
1 answer

Wildfly vs undertow embedded performances

I'm interested in the embedded undertow technology because then I don't have to reconfigure standalone.xml every time my project changes of machines. I can then just run the .jar. So I have 2 questions: Can I keep wildfly configuration inside a…
Ced
  • 15,847
  • 14
  • 87
  • 146
4
votes
1 answer

java:/TransactionManager vs java:jboss/UserTransaction

In Wildfly 10: Why do I have two different jndi naming conventions for java:jboss/UserTransaction and java:/TransactionManager. looked on UserTransaction: javax.naming.NameNotFoundException after Migration to WildFly 8.2.0 and Java 8 and it has…
sarmahdi
  • 1,098
  • 4
  • 21
  • 61
4
votes
2 answers

Failed to process business interfaces for EJB class

While starting maven with test parameters, I get the above mentioned exception. While creating the integration test deployment, I get the following: org.jboss.as.server.deployment.DeploymentUnitProcessingException: WFLYEJB0466: Failed to process…
EngJon
  • 987
  • 8
  • 20
4
votes
1 answer

Wildfly 10 Final postgres driver ClassCastException

eventually somebody can help me. Currently I have a really strange problem when starting wildfly 10 Final with a postgres driver but with the same setting wildfly 10 CR4 will start up. The exception I get is following: Caused by:…
David M.
  • 77
  • 1
  • 13
4
votes
1 answer

Arquillian with wildfly 10

Looking for a tutorial on Arquillian with wildfly 10. I have tried this tutorial I am getting the following error when I try to run it. Caused by: org.jboss.modules.ModuleNotFoundException: org.jboss.as.embedded:main at…
3
votes
1 answer

Why Spring does not recognize @BatchSize annotation

Scenario: I'm supporting an Enterprise application that runs in Wildfly10. The application (.war) uses J2EE technologies (EJBs, JPA, JAX-RS) and SpringBoot features (like, SpringMVC, SpringRest, SpringData, SpringRestData) ... Both stacks co-exists…
Carlitos Way
  • 3,279
  • 20
  • 30
3
votes
1 answer

Disable Weak TLS Cipher Suites

I have a requirement to disable below weak TLS ciphers (128 bits) TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 (0xc027) ECDH secp256r1 (eq. 3072 bits RSA) FS WEAK 128 TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA (0xc013) ECDH secp256r1 (eq. 3072 bits RSA) …
3
votes
2 answers

Change date format in Wildfly(JBoss) access log

access_log in wildfly logs the entries with the following predefined date format, which is produced by %t: [22/Oct/2019:14:28:36 +0300] However, I would like to change that to be as below: [22/10/2019 14:28:36.345] I have tried to change the…
Philip Dylan
  • 81
  • 1
  • 8