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

cxf LOGGING of soap messages - reduce payload - delete binaryStreamList WildFly

Actually i have a problem with Webservice-Framework Apache CXF Integration/Intstalling in WildFly v.10 - org.apache.cxf. Every SOAP message is logged in a special file soap.log. This is configured in standalone.xml of JBoss. The Problem is that the…
marburger
  • 13
  • 4
1
vote
1 answer

How to enable TLS v1.2 in Wildfly 10 standalone mode?

Need help to ensure our Wildfly 10 server (installed on Ubuntu 16.04.1 LTS) supports only TLS v1.2 and above. How to check current ssl certificate version ? We have enabled https in our server by editing standalone.xml
Tony Jose
  • 61
  • 1
  • 1
  • 4
1
vote
3 answers

WildFly Swarm and ActiveMq (Required services that are not installed)

I have a microservice in JavaEE using JMS protocol for messaging. I'm trying to create an UberJar with WildFly Swarm using a remote connection (in this case I have a docker container with an ActiveMq instance running). In the documentation…
Virge
  • 148
  • 2
  • 9
1
vote
0 answers

Migration from Spring 3.1.9 to Spring 4.3.9

I am doing a migration Java7 to Java8 Jboss AS 7.1.1Final to Wildfly 10 Spring 3.1.9 to Spring 4.3.9 All the compilation error has been fixed . At runtime , I am getting below exception.... Can anybody help me on this…
sitakant
  • 1,766
  • 2
  • 18
  • 38
1
vote
1 answer

Wildfly 10.1 on Red Hat blocking web requests

Using Spring and Wildfly, I have noticed that my rest services can only handle one request at a time. I have tried a few different configurations to attempt to allow multiple requests run asynchronously from the same client machine. I am assuming…
javafreak
  • 301
  • 1
  • 3
  • 9
1
vote
0 answers

Forbidden Error In wildfly-10.1.0.Final

In my project, I have two different applications Oneview and Platform. Oneview is a base application and Platform is accessible from Oneview. To deploy both applications in wildfly-10, I have created two different folders "deployments-oneview" and…
Abhishek
  • 315
  • 5
  • 18
1
vote
1 answer

Wildfly + Hibernate+ Log4J2 -> Not logging hibernate stuff

So I have a project where I'm using Wildfly 10 and Hibernate 5.2.9 and I'm trying to log the hibernate stuff, such as Queries and so on, using Log4J2, but for some reason it's not working Log4J2 works when I log application stuff like…
GoAlves
  • 435
  • 3
  • 5
  • 16
1
vote
1 answer

Administrator access to EJBCA gives "intrerrupted while the page was loading" error

I want ot use EJBCA with Wildfly (JBoss) application server as PKI infrastructure. I can access http://127.0.0.1:8080/ejbca/ https://127.0.0.1:8442/ejbca/ but not https://127.0.0.1:8443/ejbca/adminweb/ Then I will get with Firefox: The…
1
vote
0 answers

Wildfly10: Dynamically configuration of an in-server EJB lookup. (add a EJBReceiver for remote server-to-server EJB invocations)

It is possible to configure dynamically an in-server ClientContext (server-to-server EJB invocations) in order to add remoting ejb receiver outbound connections? Something like changing the jboss-ejb-client.xml configuration at runtime. Initially I…
ethanxyz_0
  • 713
  • 12
  • 37
1
vote
1 answer

Unable to instantiate driver SQLServerDriver in Wildfly 10

I am having the following error: 15:02:34,434 ERROR [org.jboss.as.controller.management-operation] (ServerService Thread Pool -- 33) WFLYCTL0013: Operation ("add") failed - address: ([ ("subsystem" => "datasources"), ("jdbc-driver" =>…
Carlos Laspina
  • 2,013
  • 4
  • 27
  • 44
1
vote
1 answer

If I am not using some modules,Is it mandatory to have all modules in wildfly10.1.0 standalone.xml?

Can anyone please help me out here ? If I am not using some modules as part of our application development , is it mandatory to have all modules extensions in standalone.xml ? If not , what is benefit we will get if we remove some unused modules and…
Pathak
  • 183
  • 5
  • 21
1
vote
0 answers

Wildfly: How to change the module name of WAR deployment? (without changing the WAR filename)

I have a maven project and the name of generated .war file is my-project-1.0.0-SNAPSHOT.war. And I try to get the name and slot of the war module with this code: Module module = Module.forClass(clazz); ModuleIdentifier identifier =…
ethanxyz_0
  • 713
  • 12
  • 37
1
vote
1 answer

Wilfly10 apache artemis - JMS implementation

In Jboss 5.x, JMS model- queue (Point to point) used to be implemented as follows (MDB class and ejb-jar.xml) MDB package receiver; import javax.jms.JMSException; import javax.jms.MessageListener; import javax.jms.TextMessage; import…
Kamal Vijay
  • 47
  • 1
  • 13
1
vote
3 answers

How to create a JMS queue/topic programmatically in wildfly 10 server.

I have an swing based application with is communicating with wildfly 10. The application creates queue/topic dynamically. I cant restart the wildfly each time the queue/topic get created. I want to instantiate JMS queue/topic and use it without…
Sandeep
  • 21
  • 1
  • 4
1
vote
2 answers

Spring JDBC template : queryforlist doesn't close the db connection?

Having background jobs in a wildfly web application where NamedParameterJdbcTemplate is used to retrieve a list of records, I've a database connection leak preventing the jobs to work after a while, CannotGetJdbcConnectionException. After…
David L
  • 175
  • 1
  • 14