6,662 questions
0
votes
0
answers
60
views
JMS destination lookup error on JBOSS EAP 8
I have a queue - TestQueue created on JBOSS EAP 8 and my application (EAR) has a MDB which publishes messages to this queue.
standalone.xml
<subsystem xmlns="urn:jboss:domain:messaging-...
1
vote
1
answer
175
views
Propagate security context from WAR to other subdeployments within EAR in WildFly 38
We are migrating from WildFly 24 to 38, and also implementing OIDC with Keycloak. We are deploying an EAR with multiple EJB and WAR subdeployments.
If I call an EJB via remoting from our desktop ...
0
votes
2
answers
100
views
WildFly 37 – EJB security domain default not applied on 4 out of 5 modules unless @SecurityDomain is explicitly set
I'm upgrading from Wildfly 27 to Wildfly 37 and I've ran into an interesting issue. I’m deploying an EAR with multiple EJB submodules on WildFly 37.
In my ejb3 subsystem I’ve set:
<default-security-...
0
votes
0
answers
55
views
How to use Qmatic SDK connectors (e.g., BranchConnector) in a Spring Boot application?
The Qmatic SDK documentation mentions that we can use their connectors (for example, BranchConnector) to retrieve data from the Qmatic system instead of calling the REST API directly.
However, the ...
1
vote
1
answer
138
views
Is there a non-hacky way to run Jakarta Server Faces apps from a fat jar?
The title says it all.
JSF + EJB is the perfect fit for a couple of small projects I have. I haven't been much in the JEE community for the last 10 years, and I see that a lot has changed (the name! ...
0
votes
0
answers
86
views
Upgrading apache.poi in pom.xml causes referencing error when deploying to glassfish server
I have to upgrade Apache's poi and poi-ooxml dependencies in my project. The only code change I've made is I updated in my pom.xml from this:
<dependency>
<groupId&...
0
votes
1
answer
46
views
EJB remote Entity Bean
I would like to use EJB remoting to access the remote interface of a Session Bean and retrieve an Entity Bean (or a POJO).
The Entity Bean implements an interface and I would except the bean to be ...
0
votes
1
answer
34
views
Do I need a CDI<->Hk2 bridge to make @Stateless EJBs available to Hk2 in a REST endpoint?
I have a Jakarta 10 application that runs fine on OpenLiberty where all injection is handled by WELD.
When attempting to run the same application on Payara community edition it fails.
There is a @...
0
votes
1
answer
205
views
Binding remote EJB names with Liberty
I'm migrating application from Websphere to Liberty but I am having issue with EJB lookup.
So I have one server application with some EJBs. Those EJBs have a custom mapping defined in ibm-ejb-jar-bnd....
0
votes
0
answers
50
views
Tomee 9 TimerService database storage
My Jakarta web application uses TimerService to schedule tasks in future.
Everything is working fine (timer are created and timeout methods executed in time) except that timer that should be ...
0
votes
1
answer
105
views
How do I make EJB request to two different servers deployed in Wildfly 26
I am currently facing an issue in WildFly 26.1.3 where an EJB Client dynamically switching between two WildFly EJB servers exhibits unexpected behavior.
Issue Summary:
First EJB call to Server 1 ...
0
votes
1
answer
53
views
How can I use an external configuration property to define the cron expression in the @Schedule annotation of an EJB?
I have a cron expression in my properties file but the schedule annotation won't take the property like it would in Spring with the Scheduled annotation.
In Spring you can do:
@Scheduled(cron = "$...
0
votes
0
answers
44
views
How to get list of JBOSS EJB threads through Java Program
I have very little knowledge in EJB & JBOSS. Our application is running in JBOSS EAP 7.1.4 and it launched few EJB threads (names starting with tSA). We can see those threads in Jboss Jconsole as ...
-1
votes
1
answer
243
views
Wildfly: gRPC Server Interceptor for Keycloak oAuth Token
I have a Wildfly Server running an EJB Application, if i make a REST client call to the Application the EJB Security contex has being automatically filled up with a valid Principal and I can cast it ...
1
vote
1
answer
80
views
EJB TimerService : schedule task to run every 90 seconds
I know that is possible to schedule a task using the timer service that will run every N seconds. One of the ways to do this , is described here : https://docs.oracle.com/javaee/6/api/javax/ejb/...