Questions tagged [jboss-eap-7]

For development issues encountered while using Red Hat JBoss EAP 7

JBoss EAP 7 is a Red Hat supported release based on open source WildFly.
JBoss EAP 7 has been tested with OpenJDK 8, Oracle JDK 8, IBM JDK 8, and HP JDK 8
JBoss EAP 7 implements the Java EE 7 Full Platform and Web Profile standards.
Component versions reference: https://access.redhat.com/articles/112673#EAP_7
Click here for free development subscription which allows you to download Red Hat JBoss EAP 7 for development use https://developers.redhat.com/downloads/

442 questions
1
vote
1 answer

Pause an ActiveMQ Artemis Queue Programmatically in JBoss EAP

We're using JBoss EAP 7.3 with embedded ActiveMQ Artemis message broker. I have a use case where I need to programmatically pause a queue. The only complete example I found was here on Stack Overflow in this question. His solution is the code…
Todd Johnson
  • 147
  • 1
  • 11
1
vote
0 answers

Caching in spring boot Application

We have a REST API built using Spring boot. Due to the complexity, the response time quite slow. To improve the performance, we identified set of static info that can be cached instead of going to DB every time. The way I understand spring cache is,…
alex
  • 21
  • 1
  • 5
1
vote
1 answer

Getting directory listing issue with URL /VAADIN/* using Vaadin 8, JBoss EAP 7.0, Firefox browser

Problem statement: Application built using Vaadin 8 deployed on Jboss EAP 7.0 has directory listing issue of all resources within /VAADIN/* e.g /VAADIN/themes/mytheme/images Validation: Upon validating other directories, say myapp/images or my/js…
1
vote
1 answer

JBoss EAP 7: Disable tag pooling outside standalone.xml

I'm migrating a legacy application from Weblogic to JBoss EAP 7. The application contains custom tags which were not created with tag pooling in mind (e.g. they have internal state not properly cleaned up in doEndTag). According to RedHat docs…
p91paul
  • 1,104
  • 10
  • 26
1
vote
0 answers

Make optional in the sense that deployment does not fail when a JNDI name is not pointing to a valid resource

We have an EJB application with a jboss-ejb3.xml which defines resource-refs for JNDI mapped resources. In our use-case not all resources are available in all environments. Since jboss-ejb3.xml cannot be externalized, I was hoping if there was a way…
akk202
  • 194
  • 1
  • 10
1
vote
0 answers

Jboss EAP 7.2 - How to use the SSL keystore and password in Java application since there is no system variables supported for these two variables?

We are migrating Jboss EAP 6.4 to Jboss EAP 7.2. Jboss 6.4 has system variables supported for keystore and password. Question here is how to use the SSL keystore/password from Jboss EAP 7.2 configuration file (standalone.xml) in Java application…
1
vote
0 answers

Adding smallrye mutiny dependency in JBoss EAP 7.3

I have a microprofile application using Smallrye Mutiny, which I need to deploy on JBoss EAP 7.3. I have applied JBoss EAP XP patch to enable microprofile features. I have also added mutiny jar as a module in EAP. Below are the module file…
1
vote
1 answer

JBoss 7 Embedded ActiveMQ - MDB message listener not working

I have to upgrade an existing app with JBOSS 4.2.2 and embedded activeMQ 5.3.0 To try with jboss 7.3 using an embedded active MQ, i did the following. Following the instructions at…
Ben
  • 137
  • 3
  • 12
1
vote
1 answer

JMS client to ActiveMQ at server on Red Hat JBoss EAP 7.3 in Java

I am writing a Java client to connect to my JBoss EAP 7.3 server running ActiveMQ, and I am getting various connection responses as I alter the parameters. Please help me correct the parameters/code. I get: 09:46:57.227 [main] INFO org.xnio.nio -…
Dr Dave
  • 550
  • 1
  • 6
  • 22
1
vote
1 answer

Migrating from JBoss AS 7.1 to JBoss EAP 7.3.0

We are migrating from Jboss AS 7.1 to Jboss EAP 7.3.0 and we are getting the below error: << 22:36:16,304 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-6) MSC000001: Failed to start service…
1
vote
0 answers

How to host static content from Jboss EAP 7.1 slave in HA cluster?

I have JBoss running in clustered mode. I access the application via load balancer URL. As per specifications, JBoss EAP 7.1 serves the static content from welcome-content directory. I have a file which is under slave's welcome-content. It is not…
1
vote
2 answers

Keytool command to add a PasswordCredential to elytron keystore?

I'm running a JBOSS EAP 7.3 server and trying to add a private key to the elytron keystore. The following works: $JBOSS_HOME/bin/jboss-cli.sh --connect --command=/subsystem=elytron/credential-store=keystore:add-alias(alias='keyalias',…
sleepster
  • 72
  • 6
1
vote
0 answers

javax.naming.NameNotFoundException: jboss -- service jboss.naming.context.java.jboss.exported.jboss JBOSS eap 7.2 JAVA

I am trying to connect JMS queue on JBoss EAP 7.2 using Java. My code to get the initial context is below: env.put(Context.INITIAL_CONTEXT_FACTORY, "org.wildfly.naming.client.WildFlyInitialContextFactory"); env.put(Context.PROVIDER_URL,…
Pankaj
  • 54
  • 1
  • 7
1
vote
0 answers

Add third party Self signed certificate in JBoss EAP 7.2.0

I am developing a Spring Boot application and deploying it in JBoss EAP 7.2.0 server. From my application I am calling another application using REST over HTTPS. I have the certificate (.crt file) and key (.key file) of the third party application.…
Anirban
  • 925
  • 4
  • 24
  • 54
1
vote
0 answers

Add third part self signed certificate in JBoss EAP

I am developing an application using Spring Boot that calls another application (say application A) over HTTPS and deploying the application as war file in JBoss EAP 7.2. Until recently, application a was using a certificate issued by a trusted…
Anirban
  • 925
  • 4
  • 24
  • 54