A message-driven bean is an enterprise bean that allows J2EE/JEE applications to process messages asynchronously. It acts as a JMS message listener, which is similar to an event listener except that it receives messages instead of events. The messages may be sent by any J2EE/JEE component, or by a ...
5
votes
1answer
382 views
Message-driven bean (EJB3) in WebSphere 7, XA transactions, Error handling
I am a relative newb to EJB. Background: I have an MDB using the WebSphere default messaging provider receiving MapMessages that has a java.sql.DataSource to do some work, using preparedstatement, ...
4
votes
5answers
370 views
How to build a auto reply JMS listener in JUnit (in OpenEJB)
I have a EJB to send a message to JMS queue and wait the reply from it. I want to test the EJB, it's easy to use OpenEJB to do the JUnit test of the EJB. But the problem is this EJB will wait the JMS ...
4
votes
2answers
765 views
How to limit the number of MDB instances listening to a Jboss JMS queue
I'm having a problem with the following setup:
A Java application send email msg to a JMS queue, then an MDB listening to the queue get the email msg with the onMessage method, it open a connection ...
4
votes
2answers
480 views
ActiveMQ messagedriven bean to JSF
I am currently reading from ActiveMQ with a Message driven bean (EJB3) in the back end. The problem I am facing is that I have to update a table in my JSF page as soon as I receive the message from ...
3
votes
2answers
69 views
Propagating configuration within the WAS cluster by means of MOM
I am developing application which is embedded within the cluster environment in Websphere AS. I am using several nodes and sometimes I would like to change configuration settings on the fly and ...
3
votes
1answer
222 views
MDB transaction retry interval
Can we control the transaction retry interval in MDB? If so, please provide an example or direct me to the documentation. We want to set up a time interval of 3 min for MDB transactions. The desire is ...
3
votes
2answers
177 views
DI in an EJB/MDB Application
I'm currently developing a small EJB application running on IBM Websphere Application Server 7 (Java EE 5). The app mainly consists of one MDB listening for incoming MQ messages which are transformed ...
3
votes
1answer
620 views
How to restrict pool size of MDB on Glassfish v3
my Message Driven Bean executes highly intensive operations so I would like to restrict it's pool size or my server would have been overloaded. I have tried this ( code ) but it doesn't work, it's ...
3
votes
1answer
456 views
How does CDI injection work in MDBs and @Scheduled beans?
I'm working on a large Java EE 6 application that is deployed on JBoss 6 Final. My current tasks involve using @Inject consistently instead of @EJB, but I'm running into some problems on some types of ...
3
votes
2answers
178 views
Handling connection errors in a MDB
Is it possible to manage connection timeouts or errors in a MessageDrivenBean?
You can make the factory to retry connecting a certain number of times but... is it possible to make some actions each ...
2
votes
1answer
46 views
How to do statistics collection in MDBs state of the art?
I have multiple MDBs (and plenty of mdb instances) as consumers for messages. I have to collect certain statistics inside these Beans and send them every X (currently 30) seconds to a JMS destination.
...
2
votes
2answers
77 views
@MessageDriven transactions and redelivery semantics
What's the best way to accomplish the following?
@MessageDriven bean does some work on database
on failure, I want to roll back the DB transaction
but I also want the JMS message NOT to be ...
2
votes
3answers
215 views
How to configure pool size of Message Driven Bean
I would like to configure the pool size of a MDB but just one.
I deploy my application on JBOSS 6 or Glassfish 3 so the solution must be standard.
I found for JBOSS maxSession for ...
2
votes
0answers
90 views
Connecting JBoss 5.1 MDBs to Websphere MQ queues
I'm trying to upgrade a system running jboss3.x to jboss5.1.
The system uses MDB's listening on queues in WebSphere MQ, so the 'message-driven' is connected to a Container/'invoker-proxy-binding' via ...
2
votes
1answer
61 views
Weblogic/Message Driven Bean processing issue
Technologies:
Jave EE, Weblogic 10.3, JMS
Scenario:
An EJB module, say Module_1, with 3 distinct Message Driven Bean (MDB) classes monitoring 3 different Java Mssage Queues (JMS). Messages are ...
2
votes
1answer
90 views
Message Groups in WebSphere MQ
I have a requirement that I need to process JMS Messages (via MDB) in a way that Messages belonging to a certain group (a group ID is set) are consumed by the same bean instance. The behaviour I ...
2
votes
1answer
89 views
Are there limitations on deploying an MDB in a JBoss WAR?
We are not seeing our Message Driven Bean receive any messages when deployed in a war in JBoss 4.2.3. Are there any known limitations on using MDBs in WAR deployments?
2
votes
2answers
50 views
Call to slow service over HTTP from within message-driven bean (MDB)
I have a message driven bean which serves messages in a following way:
1. It takes data from incoming message.
2. Calls external service via HTTP (literally, sends GET requests using ...
2
votes
1answer
268 views
How to view Message list in HornetQ
We have limited the number of maxSession to 5
@ActivationConfigProperty(propertyName = "maxSession", propertyValue = "5")
If more than 5 concurrent request comes, then it has to wait in the queue. Is ...
2
votes
1answer
1k views
Glassfish v3: Can't Deploy MessageDriven Bean - Missing Destination JNDI Name
I am trying to deploy an ear that contains an EJB jar. The jar only contains one MDB class:
package my.package;
import javax.ejb.ActivationConfigProperty;
import javax.ejb.MessageDriven;
import ...
2
votes
1answer
281 views
Exception Deploying EJB Jar to Glassfish
This is my first foray into using JMS. I have a successfully created/deployed a war file that contains a servlet that I can use to upload files. When a file is uploaded it sends a message to a JMS ...
2
votes
2answers
202 views
JMS and JTA Transactions in JEE
I think I am not getting something right with JMS and JTA. I am running in a JEE container with all CMTs. Here is what I am doing:
In an SLSB, write something to the database
From the same method of ...
2
votes
2answers
37 views
MDBs and durability
For durability to make sense, should the app server in which an MDB is deployed to be separated from the JMS Provider (server), so that if the app server shuts down and is restarted later, the MDB can ...
2
votes
1answer
375 views
An illegal attempt to commit a one phase capable resource with existing two phase capable resources
I have an MDB in WebSphere 6. The MessageListener is linked to a Tibco EMS queue. In the MDB I'm trying to write to a WebSphere MQ queue. I get the following error:
WMSG0042I: MDB Listener LoanIQ ...
2
votes
0answers
62 views
Can we change MDB configurations at run time?
Can we change MDB configurations at run time?
How? Any Example or link?
2
votes
2answers
165 views
Is it legal to inject a @Stateful into an MDB?
Is it legal to inject a @Stateful into an MDB?
@Stateful
public class InteruptBean implements Interrupt {
....
}
@MessageDriven(...)
public class EchoTrigger implements MessageListener {
...
2
votes
1answer
250 views
MDB connected to Oracle AQ via a datasource
Im trying to create a MDB (JBoss AS 6) that connect to an Oracle AD queue.
I got the following example to work:
@MessageDriven(name = "TestMdb", activationConfig = {
...
2
votes
1answer
139 views
WAS 7.0 - default interceptors in MDBs
I'm having problems advising MDBs with default interceptors in Websphere 7.0 AS. I have tested the same code using Glassfish AS and it works fine. The strange thing is that WAS interceptor is applied ...
2
votes
1answer
93 views
How to handle Multithreaded insertions with unique constrain in the database using JPA/Hibernate?
in a message driven bean i persist entries to lookup-table with unique entries. Basicly i create a select statement with the criteria api and if i don't find an entry, i create one.
Currently this ...
2
votes
2answers
223 views
Event driven programming with weblogic MDB
I am building an application which acts as an event listener and based on the events received it needs to execute certain steps or work-flow. Is it better to have events posted to a single queue and ...
2
votes
1answer
367 views
Error deploying MDB with multiple queue names in OpenEJB
The following error appeared at Tomcat/OpenEJB startup after upgrading to OpenEJB 3.1.3:
ERROR - Unable to register MBean
java.lang.IllegalStateException: ...
2
votes
2answers
207 views
Why not use Session Beans instead of Message Driven Beans?
I'm wondering, why not use Session Beans instead of Message Driven Beans ?
If you can call remote methods from EJBs, so why bother sending/receiving messages with Message Driven Beans (which is more ...
2
votes
1answer
1k views
Java EE 6 + JPA - Exception: Message Driven Bean cant be managed bean
I create an Enterprise Application CustomerApp that also generated two projects CustomerApp-ejb and CustomerApp-war. In the CustomerApp-ejb, I create a SessionBean call CustomerSessionBean.java as ...
2
votes
1answer
418 views
How do I change a specific MDB max-pool-size at runtime on Glassfish
I'd like to be able to change the max-pool-size value at runtime. Currently I have to modify the xml and restart Glassfish.
Any ideas?
2
votes
2answers
591 views
Message Driven Bean with Java Message Queue down
I have the following problem deploying my application.
It uses JMS and a remote openMQ for communication between servers. The problem is that the connection is not fully reliable so it can be up or ...
2
votes
2answers
2k views
Message Driven Bean with a Datasource
My question is how do I configure an EJB 3.0 style message driven bean to use a configured JMS datasource in jboss.
For example, my MDB looks something like:
@MessageDriven(mappedName = ...
1
vote
1answer
34 views
JMS and MessageDriven EJB Bean
I have a problem with message driven EJB.
I have too applications Web Service and EJB application which contains MessageDrivenBean.
To send message to JMS I'm using ObjectMessage:
Here is my code:
...
1
vote
1answer
27 views
Race condition on MDB: which is the best way to handle it?
I have an event-driven application based on MDB, spring integration and JPA for persistence.
The application is deployed on weblogic 10.3 with a max-pool-size default value (16).
My application need ...
1
vote
1answer
37 views
How to configure the pool-size for a Message driven Bean in JBoss 6?
I want to configure a bigger pool size for my message consumer in my java ee application, as the consumption of a message requires some time (mostly waiting).
How can i do this?
I would prefer a ...
1
vote
0answers
49 views
Tibco how to get original queue name for undelivered messages in DLQ $sys.undelivered
I am currently designing error handling for unprocessed JMS messages for a customer. Tibco EMS is used as a broker, MDB in Weblogic as consumer.
I am evaluating Tibco DLQ capabilities - the ...
1
vote
1answer
56 views
Configuring MDB in Openejb 3.1.4 and Tomcat
I am using Tomcat & OpenEJB 3.1.4.Working with Message Driven Bean(EJB 2.0 - MDB) to recieve messages from MQ.What all configuration or Setup I need to do with OpenEJB-Tomcat to recieve messages ...
1
vote
2answers
81 views
MDB Message consumer delay
Is there any option in hornetq to set message consumer delay. if so kindly help with an example.
Our Req: We need MDB to read message with a constant 2 min delay.
1
vote
1answer
31 views
JMS consumer on a different JVM
My application puts in messages in a JMS queue. A bean that implements MDB and MessageListener pops messages from this queue. All this happens on a single JVM .
What I want to do is: I want the MDB ...
1
vote
0answers
61 views
Difference between JMS thread and JMS session worker thread
The thread dump of my application shows "JMSThreads" and "JMS session worker threads".
The # of "JMS Session worker threads" in the thread dump taken at peak time(when a lot of tasks are triggered ...
1
vote
0answers
68 views
Implementing MDB Pool Listener in JBoss JMS
I've an application deployed in JBoss with multiple MDBs deployed using JBoss JMS implementation, each one with a different configuration of MDB Pool Size. I was looking forward to some kind of ...
1
vote
1answer
40 views
@Resource-annotation in a MessageDrivenBeans abstract parent class?
this is ok
@MessageDriven(...)
public class EventMDB implements MessageListener
{
@Resource
private MessageDrivenContext context;
//onMessage(Message)
...
but does it also ...
1
vote
1answer
46 views
How do I increase the value of 'InProcessMessageCount' for jms queue in jboss?
I am using JMS based on Jboss 4.2.3 and jdk1.5.0_14. however the MDB pool is configured to maximum size 20, the maximum value of InProcessMessageCount is 15 only.
I did many reties to utilize the ...
1
vote
1answer
817 views
Working MDB example in JBoss 7.0.1?
Here's an EJB3 MDB that used to work for me in JBoss 5.1:
@TransactionAttribute( TransactionAttributeType.NOT_SUPPORTED )
...
1
vote
1answer
91 views
SessionContext RollBackOnly and MDB's
Having an MDB that receives a message in a transaction and then does several EJB calls if I call in one of those EJB's this.sessionContext.setRollbackOnly() will this trigger the JMS message's ...
1
vote
1answer
125 views
JMS/MDB rollback
We have a application, which reads of JMS and does some database transactions, all as part of one XA transaction..
If we find the message has some problems, we want to rollback the database,
but we ...