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

WildFly JAAS failures don't produce exceptions?

I've created a standalone client that connects to a WildFly 10 cluster running a simple server application. I'm using the DatabaseLoginModule configured in my client's properties to connect to my remote server. Authentication & authorization works…
0
votes
1 answer

Wildfly 10.x remote EJB client hangs when sending an enum value with CONNECT in the name

I've got a simple stateless EJB with a method that takes a basic enum as an argument and returns the same enum. @Stateless @LocalBean public class SerialBean implements RemoteSerial { @Override public Whatever enumTest(Whatever type) { …
Mike Digdon
  • 21
  • 1
  • 4
0
votes
1 answer

How to perform EJB DB RBAC with WildFly?

I'm trying to create a rich client that performs EJB RMI to interact with a server/DB. Previously, I had communications working with the remoting system to authenticate a user. Then I tacked on HTTPS communications using a keystore and clustering to…
0
votes
1 answer

Wildfly 10 JMS : EmailDispatchMDB$$$endpoint2 cannot be cast to javax.resource.spi.endpoint.MessageEndpoint

I am migrating an old application which is running on Jboss 6.1.0 currently to wildfly 10.1.0. I have created all queue from old application to the default configuration of standalone-full.xml But while server start up i am getting issue "cannot be…
0
votes
1 answer

Wildfly 10.1 and NullPointerException

Please, before pointing that this is duplicate of What is a NullPointerException, and how do I fix it?, read the post to the end, as this is prepared as adviced on the mentioned site! I moved my app from Wildfly 8 to Wildfly 10 and to my suprise…
robson
  • 1,623
  • 8
  • 28
  • 43
0
votes
1 answer

Arquillian Unsatisfied dependencies for type XXXX with qualifiers @Default

I am trying to set up an Arquillian environement since one day, and I am not able to make it works, I am stuck in a loop of exceptions. Here is the one I have right now :…
Ecterion
  • 161
  • 3
  • 19
0
votes
2 answers

RestEasy ExceptionMapper NotAllowedException Serialization Error MediaType octet-stream

I present here the simple rest service to illustrate the exception I receive. Service A @Path("/A") public class ServiceA { @GET @Produces({ MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON}) public Response show() { return…
office.aizaz
  • 179
  • 11
0
votes
2 answers

java EE project encountered NoClassDefFoundError

I am working on a Java EE project with jdk 1.8 wildfly 10.1.0 final intellij idea 2016.3 The project has a web application module and an ejb module, and the structure is as follows: And the two modules have already been deployed…
Stone
  • 43
  • 1
  • 8
0
votes
1 answer

Run a Spring Application on a JBoss Wildfly Server

I have an Java project (of RESTful Services) I developed on a Windows machine in Eclipse and runs on a Wildfly 10 Server. Everything works perfectly. Now I am trying to deploy the same project on Eclipse on a OSX machine. I have installed Eclipse…
Richard
  • 8,193
  • 28
  • 107
  • 228
0
votes
1 answer

SQL Server using Windows Authentication in Wildfly as service

I'm configuring a datasource to use windows authentication with SQL Server. I put the DLL sqljdbc_auth.dll in C:\Program Files\XXXX\wildfly-10.1.0.Final\bin Stating Wildfly using standalone.bat works fine. But using windows service I got this…
Rodrigo Menezes
  • 245
  • 7
  • 20
0
votes
0 answers

Why Wildfly can not find a jsp file from deployment?

Sorry for my english. I use wildfly-10.1.0.Final and myfaces1.1 . When I use an exploded deployment, I can access only the static jsp files. The dynamic jsp files, generated with Freemarker are not found. When I use the packaged deployment, all jsp…
Ray Lloy
  • 171
  • 12
0
votes
1 answer

How can I access to my app with WildFly

I'm having a very painful time with WildFly. I successfully deployed my war and the log said WFLYUT0021: Registered web context: /myapp And I can't access the app with 404. http://192.168.56.101:8080/myapp/index.html What did I do wrong?
Jin Kwon
  • 20,295
  • 14
  • 115
  • 184
0
votes
2 answers

Can anybody please guide in detail how to connect to an AWS RDS MySql instance via Wildfly 10 application server using SSL encryption

I am unable to setup SSL/TLS between wildfly 10 and Mysql. I have been trying to the following configurations for the datasource : .
0
votes
1 answer

SSL SAN certificate fails in resolving alternative name

I am currently trying to secure a Wildfly 10 application server to accept SSL only. The server is in my local network. The server is part of my private domain. I have issued an SSL SAN certificate from my CA and configured Wildfly to use the…
Crazy Bytes
  • 69
  • 1
  • 1
  • 11
0
votes
1 answer

Wildfly Deployment going to temp folder

I am facing a little strange issue while deploying web service to WAR file. If I deploy the application via Netbeans IDE it is going under \standalone\deployments directory. However, if I deploy the war file from Admin Console it is always getting…