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

learn more… | top users | synonyms

0
votes
0answers
17 views

JBoss 4.2.2 MDB Long Running OnMesage

I am attempting to use an MDB (onMessage) to run a long running JDBC sql query and export the output to disk. I am running into timeouts with the onMessage because the acknowledge takes place after ...
0
votes
1answer
54 views

Error on JMS Queue because of destination in websphere used by Message Driven Beans

I am getting the following error: Application EBS_Calc#EBS_Calc_EJB.jar#MBIntegrations has an , useJNDI, for which there is no corresponding property on the ActivationSpec class ...
0
votes
0answers
24 views

Remote Queue location

I am using Glassfih server (version 3) and ejb module (version 3). I have message driven bean which listen on local queue. I am trying to implement message driven bean that will listen on queue on ...
0
votes
0answers
30 views

reject message from jms on redelivery in weblogic

Mine is middleware application where we are using JMS for messaging and we are sending messages to other application like there are A, B and C. In this B is middleware application where we are using ...
0
votes
0answers
57 views

How to implement a push architecture in javaee : receiving and displaying an alert in the backoffice server?

I have to process an HTTP POST request, wich sends an alert from a mobile application, that will be displayed in the backoffice after that ( in a growl for example), this must be implemented via the ...
-1
votes
0answers
18 views

JMS sends to wrong queue (but only sometimes)

I've got 3 queues with "jms/ExampleQueue1", "jms/ExampleQueue2" and "jms/ExampleQueue3" Heres an example: @Resource(mappedName="jms/ExampleQueue1") private Queue queue; and: ...
0
votes
2answers
83 views

Consume ActiveMQ advisory messages in tomEE mdb

I have an MDB that manages to consume ActiveMQ advisory messages when deployed on glassfish. But when i deploy on tomEE this MDB doesnt consume any advisory messages. Is there something I need to ...
-2
votes
0answers
33 views

MDB to read message from MQ with annotations

I want to read MQ message using MDB with annotations. I am using weblogic server. I don't want to use start up class or foreign JMS server. Please help with the code as i am new to MDB... Thanks in ...
0
votes
1answer
130 views

Configure Message Driven Bean using ejb-jar.xml

I am trying to configure Message Driven Bean using ejb-jar. I am using EJB 3.1, Netbeans 7.3 and Glassfish 3.1.2, but I am getting exception: Exception while deploying the app: ...
0
votes
1answer
47 views

Deploy MDB using GenericJMSRA on GlassFish with annotations?

On GlassFish Server 2.1 I have created a GenericJMSRA for connection with ActiveMQ as described in this guideline: http://activemq.apache.org/sjsas-with-genericjmsra.html I have successfully been ...
0
votes
1answer
64 views

Add manually mappedName in Message Driven Bean at runtime

I need to make simple Message Driven Bean that will listen on dynamically added queue locataions. I have tried few ways to implement this, but none of them worked. I have appplication that uses esb ...
0
votes
0answers
17 views

Same broker for multiple Glassfish domains

I'm running two domains on Glassfish 3 (lets call them domain A and domain B). In the broker of domain A I have some message queues to which I deliver some messages via application. In domain B I've ...
1
vote
0answers
50 views

Configuring MappedName annotation in Message Driven Bean dynamically

When using Message Driven BEans, the destination name from where to receive messages is hard coded in the annotation @MessageDriven(mappedName = "someDestinationName") Is there a way to add this ...
0
votes
1answer
84 views

Setting up MDBs to consume JMS messages in Weblogic 10.3.5

I'm trying to set up part of an application which uses MDBs to consume messages from a JMS Queue. I've looked through the Oracle documentation but can't seem to make sense of it. Examples on the ...
0
votes
1answer
68 views

retrieving a value from message listener and print in Main

I have 2 EJB app, A and B. A has a stateless session that send a message to app B (Message driven bean). App B send a message back to app A. Now, I have the value I want in the message listener in ...
0
votes
1answer
46 views

JBoss6 MDB failing to deploy but deploys fine in JBoss4.0.4

I'm trying to deploy a jar that I have in my JBoss-4.0.4.GA environment to a JBoss-6.0.0.Final environment. I have hit an issue that I'm not sure about. I am getting this error when starting JBoss: ...
0
votes
1answer
120 views

Glassfish - How to broadcast JMS message to all instances in a cluster?

I am using Glassfish 3.1.2, and I set up a cluster with one node and two instances. I have an message driven bean in my application that subscribes to a topic, which I deployed to the cluster. When ...
2
votes
1answer
99 views

JMS MDB or ScheduledThreadPoolExecutor for asynchronous tasks

I've been using JMS Message Driven Bean for a while and it is working great for the asynchronous tasks. I know that there is many ways to handle the asynchronous processes, but I am just curious what ...
0
votes
0answers
181 views

Message Driven Bean does not receive messages

I'm trying to implement a service which listens to a topic to receive messages sent to that topic. The code is quite simple: @MessageDriven(mappedName="jms/TEST", activationConfig={ ...
0
votes
1answer
261 views

JMS on Websphere MQ and backout queue

I have MQ as an external JMS server on my Weblogic server. The thing is that I need to rollback the message and retry until backout threshold is reached. Then I need to move the message to backout ...
1
vote
1answer
139 views

EJB 3.0 - Sequence of transactionally independent EJB calls with CMT

There is an MDB and a sequence of stateless EJBs to do some work with message (WAS 7.0, Java EE 5, EJB 3.0, JPA). Sequence (using CMT): MDB accepts message MDB persists entity with the message ...
0
votes
1answer
203 views

JBoss message driven beans, onMessage not called

I'm developing a web app using JBoss 6.1 as backend. I created a message driven bean with the "destination" property: "queue/searchtabQueue" and "destination type" property "javax.jms.Queue". As ...
0
votes
1answer
43 views

Sending mails in Message Driven Bean

I'm completely new with javamail and I would like to know if it is the right approach to send mail from inside an MDB in a Java EE application. My purpose is simply to send asynchronous mail after a ...
0
votes
1answer
149 views

Jboss7 MDB MailListener to a mail redopurce adapter

I'm porting a seam2/hibernate ear app to jboss7.1.1FINAL I've included in ear\lib the jar mail-ra.jar that contains sem interfaces I neaded. But it looks like that the mail-ra.jar lib is not find ...
1
vote
1answer
47 views

How to determine messageType interface for MDB

A MessageDriveBean implement another interface in addition to MessageListener. This provide an exception at deployement: Caused by: org.jboss.deployers.spi.DeploymentException: Error creating ...
1
vote
1answer
359 views

Websphere Application Server - EJB3 - MDB - using ListenerPort

Is it possible to bind (EJB 3.1) MDBs using ListenerPort (instead of activation specification) in websphere application server 8.0?
0
votes
1answer
92 views

MDB Maillistener @ActivationConfigProperty for SSL

We have a MDB which is rading emails from an email account, the MDB implements MailListener interface and I'm looking for a property to enable POP3 via SSL i have the settings in xml like this, ...
2
votes
1answer
147 views

Setting activation config properties in MessageDrivenBeans dynamically

I am experiencing some difficulties trying to get our MDBs to use dynamically loaded properties in different environments. @MessageDriven(activationConfig = { @ActivationConfigProperty(propertyName = ...
0
votes
1answer
91 views

Dealing with transactions and event driven consumer with ActiveMQ NMS

Quoting from EIP patterns book from Hohpe G. and Woolf B. : Note that in JMS, an Event-Driven Consumer that is also a Transactional Client will not work as expected. Normally a transaction is ...
0
votes
1answer
50 views

How do I access the Principal in a Message Driven Bean?

In the onMessage method of a MDB, how can I retrieve the name of the JAAS User Principal that initiated the request? My application is using Servlet login and a jdbcRealm. I have considered adding ...
0
votes
2answers
249 views

Make a message driven bean listens to external topic

Good day all, I am trying to config a message driven bean to subscribe to an external topic. I and my coworker has together successfully listen to the topic with JSE client which looks something like ...
0
votes
1answer
225 views

MessageDriven Bean: is MessageDrivenContext#setRollbackOnly() in Java EE 6 still required?

I have a Message Driven Bean (EJB 2.1) which does the following: public void onMessage(javax.jms.Message msg) { try{ ... } catch (JMSException e) { e.printStackTrace(); ...
0
votes
1answer
40 views

Toplink and CMT message driven bean

I am trying to integrate Toplink with CMT Message driven bean. MY MDB is CMT. When I try to use unitofwork commit it is erroring out saying a global transaction is present so can not do local ...
0
votes
1answer
477 views

using <message-driven> and <service-ref> in same ejb-jar.xml

I'm trying to add a message driven bean to my existing Java EE application. I'm in the process of modifying my deployment descriptor ejb-jar.xml. My ejb-jar.xml looks like this. <?xml ...
1
vote
1answer
100 views

Message driven bean applicable for this requirement?

Basically I have the problem of a long running task in my web application. Currently this task is executed by an EJB which is blocking for the time it is executing the task (task is an external ...
0
votes
0answers
86 views

Inject beans into the mdb

I have a set of MDBs for many queues, each has an instance variable of an interface called MessageProcessor, which has one method called processMessage(javax.jms.Message). Each mdb should instantiate ...
1
vote
2answers
1k views

JBoss AS7 hangs after MDB lock

I'm currently getting an intermittent exception in JBoss AS7 that, unfortunately, I cannot yet reproduce. We are currently running two applications that are basically set as producer/consumer of JMS ...
1
vote
1answer
118 views

Java EE: Track progress in MessageDrivenBeans on cluster

I have a message driven bean that is instantiated on a cluster node whenever a message arrives in a queue. I want to be able to monitor and cancel the processes that are running in the message driven ...
0
votes
1answer
165 views

Apparent resource leak in MDB exception handling

I've got an MDB which consumes messages from a queue, and then invokes a stateless EJB to perform some db operations. Something like this: public class TestMDB implements MessageListener { @EJB ...
0
votes
0answers
106 views

Send message from one web application to message-driven bean located in another web application

How can I send a JMS message from a standard Java class located in one web application to a message-driven bean located in another web application (both apps written in JSF 2.1 and reside on the same ...
0
votes
0answers
82 views

Create message-driven bean in a jsf 2.1 app [closed]

I've got two separate web applications in jsf 2.1. Is it possible to set communication between them using message-driven beans?
0
votes
1answer
255 views

Glassfish/JMS MDB transaction aborted

I have a number of MDBs in my Glassfish 3.1.2.2 application that consume JMS messages on a regular interval. All will seemingly work flawlessly for a period of time after application startup- ...
2
votes
2answers
478 views

Nested transaction behaviour in EJB

Today I discovered some unexpected behaviour in EJB. I've got MDB with default transaction attribute (REQUIRED) and SLSB with transaction attribute set to REQUIRES_NEW. My MDB calls the SLSB and catch ...
0
votes
1answer
571 views

Consuming MQ Messages: JMS Listener vs Message Driven Bean

Our IBM MQ Series queue Q1 will be receiving XML messages that we need to consume, invoke XSLT and place the resulting XML on another queue Q2. The size of the messages is small (up to 5KB). We can ...
1
vote
1answer
305 views

How to set MDB programmatic and dynamically

I am using Spring3.1 on standalone env. I set topic with jms templates this way: <bean id="mm1sessionsTopicSendingTemplate" class="org.springframework.jndi.JndiObjectFactoryBean" ...
1
vote
0answers
260 views

Spring MDP thread safe resource pooling

Am working Spring migration from EJB2.0. In existing MessageListener we have cached some heavy weight objects since it uses reflection and complex operation in its initial stage such as JAXB objects. ...
1
vote
2answers
928 views

Manually consuming messages in onMessage method of MDB

I am trying to consume messages in onMessage method, because I want several messages in one transaction to improve performance. But Message message = consumer.receive(); returns null. It doesn't ...
1
vote
1answer
80 views

Get the most out of high performance MDB

Application server creates a new transaction before calling MDB's onMessage method. Also I am processing database update in onMessage method. Transactions create additional overhead and processing ...
0
votes
3answers
159 views

In a JMS MDB with CMT, is there any way to specify an action to be performed after onMessage has returned and the transaction committed?

I have an MDB which, in response to an incoming message, needs to perform a sequence of actions atomically, for which we're using CMT. After the message has been processed and the transaction ...
2
votes
1answer
830 views

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 familiar with MDB and messaging queues. Someone has told me that queue(e.g. MDB) is "Not much more ...

1 2 3 4 5