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

Error java.lang.NoClassDefFoundError: org/jboss/resteasy/core/ResourceMethod when tried to migrate JBoss 6.3 to WildFly 10

I need some help by you. I'm trying to migrate my application in JBoss 6.3 to WildFly 10, but when I start the wildFly I have the follow error: org.jboss.msc.service.StartException in service…
2
votes
1 answer

Can't load class sun.net.dns.ResolverConfiguration on Wildfly (JBOSS)

I have the Java code below that works fine on a basic Main class example. Great! However, when it's deployed on Wildfly (10.0.0) application server the mentioned class isn't found and an exception is thrown. I've tested on another application server…
jloreto
  • 23
  • 3
2
votes
1 answer

Disable Google Analytics for Wildfly by configuration

How can I disable Google Analytics for the Wildfly 10 admin console using a configuration file or a command line parameter? Redhat provides only documentation on how to disable the feature using the admin console: Enable/Disable Google Analytics in…
Yeti
  • 1,108
  • 19
  • 28
2
votes
1 answer

Spring Boot 2 Could not refresh JMS Connection after redeployment to Wildfly 10

Was working fine with Spring but not with Spring Boot 2. After WAR redeployment to Wildfly 10 JMS stops working with error: ERROR [org.springframework.jms.listener.DefaultMessageListenerContainer] (DefaultMessageListenerContainer-1) Could not…
Makatun
  • 947
  • 10
  • 11
2
votes
2 answers

Wildfly 10 - ActiveMQ Artemis is getting shutdown?

OS : Windows App Server: Wildfly 10 Java Version: 8 We have our application running in a remote environment isolated from the internet connection (it completely offline). It will run continuously until any new patch delivered to that server. In that…
Jeevanantham
  • 984
  • 3
  • 19
  • 48
2
votes
0 answers

How to Handle JMS Queue efficiently avoiding load on server

My question here is to know how can I handle load on server if jms queue (Wildfly 10) gets filled at high extent. The problem is messages are continuously being added to JMS queue but they are processed one by one.The logic that is written is to…
Divya
  • 87
  • 1
  • 10
2
votes
2 answers

Dynamically creatable Resource Adapter

Our currently implemented JCA TCP/IP adapter needs to be re-evaluated and a new but important requirement got passed to me by project leads. It is required to add new TCP connections and start them without restarting the server. ( Additionally…
Nico
  • 1,727
  • 1
  • 24
  • 42
2
votes
1 answer

CacheException:Unable to invoke public void org.infinispan.remoting.transport.jgroups.JGroupsTransport.start() on object of type JGroupsTransport

I am using distributed caching with Infinispan-core-8.2.4.Final.jar and jgroups-3.6.7.Final.jar with Wildfly 10.1.0 but getting below exception in start up only. org.infinispan.manager.EmbeddedCacheManagerStartupException:…
Krishna
  • 795
  • 2
  • 7
  • 24
2
votes
1 answer

How to add custom JNDI resources into wildfly-10 similar like of glassfish server?

This is the code which is use to add custom resources in glassfish server but my requirement is to achieve this in wildfly-10 server but i don't know how to do it,so please help me with…
kavyansh
  • 80
  • 7
2
votes
0 answers

Wildfly service 10.0 and 10.1 cannot be stopped in Windows

We have successfully installed both Wildfly 10.0 and Wildfly 10.1 in Windows system (Windows 10 and Windows server 2008/2012) as a service but when we try to stop it this operation fails. If we try to stop it from Windows Service Manager we get…
SagittariusA
  • 5,289
  • 15
  • 73
  • 127
2
votes
0 answers

Random error SQLNonTransientConnectionException: Connection is closed

From time to time we get the following error in our Wildfly Swarm app server (full stack trace at the end): java.sql.SQLNonTransientConnectionException: (conn=19796385) Connection is closed Can someone explain how these kind of errors can occur?…
Michael Hunziker
  • 2,659
  • 3
  • 22
  • 26
2
votes
0 answers

Sping .jms.listener blocking another listener from reading JMS message

I have two applications Apple and Pear that uses the above class to listen on a configured JMS queue in WildFly ( 10.1.0 ). The Spring configuration is shown below.
Pete Long
  • 107
  • 2
  • 11
2
votes
1 answer

Wildfly App - can't serve static content

I'm working on a Wildfly App project and I'm facing a problem. I have my web.xml configured and in the webapp folder I have a index.html file. At first the page worked page and everytime I went to: "localhost/myapp/" it showed me the page. But…
CoalAshed
  • 45
  • 7
2
votes
1 answer

How to check how many entities are attached to my persistence context?

I'm currently running into some memory issues and looking at my entity model and my services. There are parts with lots of Eager Loading. There are parts with lots of JPA Collections. There are algorithms that traverse a huge tree in my domain…
EasterBunnyBugSmasher
  • 1,507
  • 2
  • 15
  • 34
2
votes
1 answer

How to map Datasources in Wildfly using deployment descriptors

My question is: How do I map a datasource to a specific jndi-name configured inside wildfly so that multiple deployed .war-files each can use their own specific datasource. The mapping should take place at deployment so that a configuration inside…