Questions tagged [wildfly-9]

WildFly, formerly known as JBoss AS, or simply JBoss, is an application server authored by JBoss, now developed by Red Hat. WildFly is written in Java, and implements the Java Platform, Enterprise Edition (Java EE) 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.

279 questions
14
votes
1 answer

Spring Cloud/Boot vs Wildfly Swarm

I have doing some analysis of modern Container less Java Stack on net, two Major promising things i came about was: Spring Boot/Cloud (Packed in Tomcat or Jetty,...) Wildfly Swarm (Moduler Wildfly 9 Server with minimum possible components) Yes…
zaxeer
  • 189
  • 2
  • 11
10
votes
1 answer

Recursively query LDAP roles from multiple OUs for a User

I am running a Web Application on a WildFly 9.0.2 Server with a Custom Login Realm (which needs to recursively query multiple Organizational Units A for Organizational Units B that are queried from Organizational Units C for a user) that is…
Setup
  • 330
  • 2
  • 21
10
votes
3 answers

Wildfly: Why I get only "Forbidden" if I call my Web application?

Yesterday our web application ran fine on WildFly 9. Since this morning I get only a "Forbidden" in the web browser. We don't use JAAS. There is also no difference if I set the following value to false in the standalone.xml: ...
Steffen
  • 2,500
  • 4
  • 31
  • 47
9
votes
2 answers

Wildfly 9 - How do I exclude Jackson

I'm running into a Jackson serialization issue with null values in maps. Apparently this is a known bug in the Jackson version used by Wildfly 9 (https://issues.jboss.org/browse/WFLY-4906). I'd like to use the current version of Jackson; however,…
user3029642
  • 909
  • 3
  • 10
  • 23
8
votes
1 answer

Invoking remote ejb in a 2-node wildfly cluster

I am trying to invoke remote ejb on each node of a cluster with nodes node1 & node2, but i am always getting node1. Deployed EJB & client code as EAR file in both nodes. Application is running on Wildfly 9 ApplicationServer. Invoked client code from…
Sumanth
  • 595
  • 3
  • 14
  • 39
7
votes
1 answer

EJB with CMT when migrate from JBoss 7 to WildFly 9

I'm migrating my application from JBoss 7 to WildFly (v9.0.1) and it is not deployed because of bean transaction management error. Caused by: javax.naming.NamingException: WFLYNAM0062: Failed to lookup…
Hassam Abdelillah
  • 2,246
  • 3
  • 16
  • 37
7
votes
2 answers

Wildfly and logback with blank lines

I'm trying to use Logback with Wildfire 9. For that, I added a jboss-deployment-structure.xml file in my WEB-INF folder with this content (I excluded also Hibernate to be sure to not pull jboss-logging):
stefv
  • 429
  • 1
  • 4
  • 19
7
votes
1 answer

@PicketLink annotated class is not used in identity.login()

I'm trying to use an @PicketLinked class that extends the BaseAuthenticator. My set-up is an ear project on wildfly 9.0.2.Final. I'm using this in my jboss-deployment-structure.xml
gadeynebram
  • 725
  • 2
  • 6
  • 22
7
votes
1 answer

How to disable Wildfly 9.0.2 trying to serialize certain classes in a clustered application

During the set up of a cluster I'm having an issue with WildFly/Infinispan attempting to serialize a number of classes which are fine to be recreated on each instance - although for whatever reason they seem determined to distribute across the…
Will
  • 810
  • 6
  • 21
7
votes
1 answer

Wildfly 9.x fails encoding greek attachment filenames

I am using javax.mail to call a mail server and send a file as a mail attachment encoding the file name like this:MimeUtility.encodeText(filename,"UTF-8",null) While this has been working fine on WildFly 8, it fails on WildFly 9.x with the same…
evialxg
  • 71
  • 2
6
votes
4 answers

How to setup Log4j2 for an application deployed in WildFly 9?

When I test my application with JUnit, it is printing the log as specified by layout pattern in log4j2.xml, but when I deploy my application in WildFly 9, I am no more getting the same format. Even the log level in Log4j2 is also not reflecting…
Anindya Chatterjee
  • 5,824
  • 13
  • 58
  • 82
5
votes
1 answer

type mismatch between read and write methods wildfly 9.0.0

I'm getting a error when I run my application in eclipse with wildfly 9.0.0.Final, but with wildfly 8.0.0.Final it's working fine, it's the same code and configuration. I'm working with hibernate. I copy my server logs 11:16:01,536 ERROR…
gogoru
  • 376
  • 2
  • 19
5
votes
2 answers

JPA native query returns Double or BigDecimal

I have the simple code below: @PersistenceContext(name = "mycontext") private EntityManager entityManager; public void getAggregatePower() { String sqlString = "SELECT SUM(power) FROM mytable"; Object singleResult =…
cheb1k4
  • 2,316
  • 7
  • 26
  • 39
5
votes
1 answer

How do I create a build timestamp in a Java web application using Maven?

I want to show the build timestamp on my website using Wildfly 9. I created a buildInfo.properties with build.timestamp=${timestamp}. pom.xml:
berry
  • 97
  • 1
  • 13
5
votes
3 answers

JBoss 7.1.1 changing JNDI binding in runtime

In JBoss 7.1.1 in standalone mode all JNDI bindings are configured in standalone.xml file in jboss:domain:naming:1.1 subsystem. According to documentation standalone.xml cannot be modified when server is running. I've tried to use JBoss CLI but I…
ragnor
  • 2,498
  • 1
  • 22
  • 25
1
2 3
18 19