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

Disable logging of Exception in Bean

I'm using Wildfly 10 and JAX-RS (resteasy) and have a Bean being injected in another Bean: @Path("foo") public class FooResource { @Inject BarBean bar; ... } Then I'm calling a method on bar that throws a RuntimeException. I'm handling…
Luis Aceituno
  • 859
  • 1
  • 6
  • 13
0
votes
0 answers

RestEasy accept Java object in input

I'm trying to build a REST service in my webapp using Wildfly as Application Server and RestEasy as library for Rest service. When I call the right url, i receive this exception: 22:57:34,099 ERROR [org.jboss.resteasy.resteasy_jaxrs.i18n] (default…
user3449772
  • 749
  • 1
  • 14
  • 27
0
votes
0 answers

Custom LoginModule with JAAS and Wildfly 10.1

Hey People I have the following problem. I have implemented an MyCustomLoginModule extends DatabseServerLoginModule and overrided the methods validatePassword(String inputPassword, String encryptedPassword) { boolean valid = false; String…
Arthur Welsch
  • 269
  • 2
  • 15
0
votes
1 answer

Does JavaEE batch survive application redeployment?

We are using Wildfly 10 in a high availability system with almost zero-downtime mode. Batch processes perform an important part of the work of our system and there are always running many of them simultaneously. On the other hand, we need to…
TomS
  • 1,159
  • 2
  • 17
  • 35
0
votes
0 answers

Get a list of members of Infinispan

I want to get a list of all the servers on infinispan on a Wildfly 10. I get null pointer exception, so I guess I am not connecting to my cache This is my code @Resource(lookup="java:jboss/infinispan/container/server/default") private…
Juan Diego
  • 1,396
  • 4
  • 19
  • 52
0
votes
1 answer

Glassfish to Wildlfy: security: does Wildlfy have an equivalent to the Glassfish file realm and keyfile (incl. admin console/command support)

All of the Wildfly (and JBoss AS) docs and Glassfish-to-Wildfly migration examples I've seen use a JDBCrealm requiring database setup and some other config file fiddling. Q: Is there any equivalent to the simple Glassfish file realm and keyfile in…
0
votes
1 answer

WildFly 10, JCache - method caching

i have simple application using Spring Boot. I wanted allow method caching with JSR107 - JCache. So with help of tutorial i put together this code : @CacheResult(cacheName = "testpoc") public Country getCountry(Integer id){ …
Mato.Duris
  • 253
  • 1
  • 4
  • 15
0
votes
1 answer

Bootstrap doesn't work with WildFly10

http://pastebin.com/f0qgg9fX Here is my home page. And below it's structure of my App: enter image description here The problem is in the (I think so), because when I run the server I get the page, but without styles, and it looks like only…
user
  • 4,410
  • 16
  • 57
  • 83
0
votes
1 answer

Deliver WildFly with default deployment

WildFly Full 10.1.0.Final (WildFly Core 2.2.0.Final): I am searching for a possibility to trigger the deployment of my Java EE application (packed as EAR file), without starting the WildFly server or using the deployment-scanner. Is it possible to…
André
  • 464
  • 4
  • 17
0
votes
1 answer

Kerberos Authentication Integration for Remoting

I am following these instructions here: Chapter 3. Additional Features - Red Hat Customer Portal Specifically, I am trying to follow section 3.3 and get Kerberos working with a remoting application. My standalone.xml looks like the example in the…
0
votes
0 answers

Eclipselink JPA support on wildfly 10.1

I have successfully ran eclipselink 2.6.2 on wildfly 10.0 But when I tried to migrate my application to wildfly 10.1 I got the following error. org.jboss.resteasy.spi.UnhandledException: javax.ejb.EJBException: java.lang.IllegalArgumentException:…
Samy Omar
  • 800
  • 14
  • 29
0
votes
1 answer

Wildfly 10 for jms messaging

I tried a simple spring jms example and deployed in tomee worked fine (din't start activemq server). Then I migrated to wildfly 10. But here i need to start activemq server. Is it needed wildfly is already integrated with activemq right? On…
0
votes
1 answer

Where to deploy the EJB-client.jar and the EJB-impl in Wildfly in a clean way?

i'm new in Java EE and i have implemented a simple EJB-Module with a remote Interface, which i want to deploy on Wildfly 10. In the pom.xml of the EJB-Module i have registered this to generate…
Andy
  • 169
  • 4
  • 15
0
votes
0 answers

Wildfly 10 Consumes a lot of Memory

I deploy 4 different war in a clustered environment on Wildfly 10 and Wildfly consumes a lot of memory. My configuration on standalone.conf is; ... JAVA_OPTS="-Xms256m -Xmx1400m -XX:MetaspaceSize=128M -XX:MaxMetaspaceSize=320m…
xxlali
  • 996
  • 2
  • 15
  • 43
0
votes
0 answers

infini span clustering in wildfly 10

Hi Im using infnispan subsytem from wildfly 10 to have cache configuration. with local cache it is working fine . now i got a scenario to cluster cache between servers. this is my subssytem configuration