Top "Message-driven-bean" questions

A message-driven bean is an enterprise bean that allows J2EE/Java EE applications to process messages asynchronously.

Message queues vs sockets

I don't have much of a socket programming experience but I tried read a little about it. I am quite …

sockets websocket message-queue message-driven-bean
EJB's and Threading

From what I understand it is illegal to spawn threads from within an EJB as it may potentially interfere with …

java jakarta-ee ejb message-driven-bean
How to configure Java Message Driven Beans and Websphere Activation specification without hardcoded JNDI Names?

We have a MDB listening to a Queue reading data and sending data to another Queue @MessageDriven( activationConfig = { @ActivationConfigProperty( propertyName = "…

ejb jndi websphere-8 message-driven-bean
JavaEE 6: How to inject JMS Resource in a standalone JMS client?

I can't get javax.jms.ConnectionFactory injected into my standalone JMS client. I get a java.lang.NullPointerException at connectionFactory.…

jms java-ee-6 glassfish-3 message-driven-bean
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 …

jakarta-ee deployment glassfish-3 message-driven-bean
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 …

jboss jms ejb-3.0 message-driven-bean jboss-4.2.x
Can we use ejb-jar.xml instead of annotations for MessageDrivenBean(MDB) in EJB 3.0?

I've configured the message destination type, name etc using @ActivationConfigProperty in EJB 3.0 but I wanted to configure the MDB using …

ejb ejb-3.0 jboss6.x message-driven-bean
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 …

jms websphere ibm-mq message-driven-bean xa
What is the difference between JMS consumer and Message Driven Beans (MDB)

Is there any difference between an asynchronous JMS (Java Messaging Service) consumer vs an actual MDB (Message Driven Bean). The …

jakarta-ee ejb jms java-ee-5 message-driven-bean
Weblogic 10.3 MDB throwing javax.sql.DataSource exception

Here are the applications that I'm using: Weblogic 10.3.3 Websphere MQ 7.0 Oracle 11g Express Edition (DB) Here is the current process …

java jakarta-ee ejb-3.0 weblogic-10.x message-driven-bean