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

Allow WildFly management console to be accessible from only one computer

I want the WildFly console to be accessible from only my PC. The WildFly is running on an Ubuntu based server on rack space. I want to access it with my windows running machine. I tried the following interface with both my public and private…
MDaniyal
  • 1,097
  • 3
  • 13
  • 29
2
votes
1 answer

Wildfly 10 tuning

I have a JSF application hosted on Wildfly 10. For some reason when web clients are 75+ I see blank page. Probably there is a default threat pool limit in Wildfly? Can you give some general advice how I can solve the problem?
Peter Penzov
  • 1,126
  • 134
  • 430
  • 808
2
votes
0 answers

How to work with MQTT in Wildfly

I am working on a platform to monitor and control devices which use MQTT for the communication layer. I use REST endpoints for the Angular2 based SPA Web. The backend is developed in JEE using WildFly which support out of the box the MQTT protocol…
2
votes
1 answer

hibernate.hbm2ddl.auto value="update" issue with Hibernate 3.4 to 5.1 migration

I have an application presently running (without issue) on JBoss 6 that I am attempting to upgrade to run on WildFly 10.1. Much of this upgrade is going well. However, the upgrade from Hibernate 3.4 (on JBoss 6) to Hibernate 5.1 (on WildFly 10.1)…
2
votes
3 answers

Wildfly 10: org.dom4j.DocumentFactory cannot be cast to org.dom4j.DocumentFactory

I've just wasted the last days for a strange random exception behaviour in wildfly 10...I've deployed my Java 7 EE .war to the wildfly, but suddenly I got this exception and deployment fail: java.lang.ClassCastException: org.dom4j.DocumentFactory…
goblingift
  • 409
  • 4
  • 19
2
votes
2 answers

Entity scanning not working in JPA/hibernate/spring application

My applicationContext.xmlis:
MDaniyal
  • 1,097
  • 3
  • 13
  • 29
2
votes
1 answer

How connect to WildFly 10.1.0.Final ActiveMQ Artemis using JNDI and Spring?

I have WildFly 10.1.0.Final, this have Artemis 1.1.0 Whats the correct way of configure…
Sergio
  • 441
  • 9
  • 22
2
votes
0 answers

How to configure Amazon Elasticache with Hibernate second level cache (Hibernate 5.0.7 & Wildfly 10.0.0)

I want to configure Hibernate's second level cache to use AWS Elasticache (currently trying to use memcached). I've looked at things like this, but can't seem to get it to work. In the Hibernate 5.0 docs, it says that Wildfly automatically…
2
votes
3 answers

HttpServletRequest.login does not keep logged in for subsequent requests

After logging in using HttpServletRequest.login(String, String), using the code below, on following requests I still get a Basic Authentication prompt. Why is the login function not working in my configuration? My…
2
votes
0 answers

Jackson 2 on Wildfly 10: How to load ProviderBase?

There seems to be a lot of questions related to Wildfly and Jackson, yet I could not solve my problem despite searching the site far and wide... I want to use Jackson 2 to handle JSON serialization on an app deployed on Wildfly 10, but I keep…
Silver Quettier
  • 2,045
  • 2
  • 26
  • 53
2
votes
1 answer

Dependency conflict loading Jackson JSR310 under Wildfly

When I am parsing a LocalDate field using the Jackson JSR310 module under Wildfly, it fails with the following exception: java.lang.NoSuchMethodError: com.fasterxml.jackson.core.JsonParser.hasToken(Lcom/fasterxml/jackson/core/JsonToken;)Z I am…
2
votes
1 answer

Hibernate Search starts with Wildfly 9 but not Wildfly 10

This is a Maven project with Hibernate Search. The Servlet works perfectly on Wildfly 9. As soon as I start it on Wildfly 10, I get a crash when Spring autowires the beans: ERROR [ContextLoader]:351 - Context initialization failed nested exception…
Guillaume F.
  • 5,905
  • 2
  • 31
  • 59
2
votes
1 answer

wildfly 10.0, jax-ws and stateful session

I want to build Jax-ws web service using Wildfly 10.0 and I want this web service with stateful session (read and write on session ), I have searched for that, and I see the below…
Yasser Ajaj
  • 119
  • 1
  • 10
2
votes
3 answers

Fail to start jax-rs service on wildfly-swarm

I have a JAX-RS service that works locally with wildfly-swarm 1.0.0.Beta8, but when I boot it on a remote machine, I get the following exception: ERROR [org.jboss.msc.service.fail] (MSC service thread 1-1) MSC000001: Failed to start service…
rü-
  • 2,129
  • 17
  • 37
2
votes
1 answer

Shiro / CDI inject security principal works on Glassfish but not on Wildfly

I'm porting some code from Glassfish 4.1 to Wildfly 10 and am having problems somewhere between Shiro / CDI and java.security.Principal. import java.security.Principal; import javax.enterprise.context.SessionScoped; import…
Barney
  • 2,786
  • 2
  • 32
  • 34