Tagged Questions
The jboss-mdb tag has no wiki summary.
6
votes
4answers
7k views
Java Heap Space error in glassfish
I am using a fresh Glassfish install with very little customizations.
I have a Message Driven Bean (ObjectUpdateMDB) that listens to a topic, then updates the object it receives in a database. There ...
4
votes
5answers
2k views
Dynamically creating asynchronous message queues in Java
I need to create asynchronous message queues dynamically in Java. My use case is sending email via multiple SMTP servers: I need to enforce that emails to the same SMTP server are processes ...
4
votes
3answers
1k views
Configuring a 'retry delay' in MQ Series
I'm hoping someone can help me - I'm using JBoss 5.1 and MQ Series 7 in an EJB / JMS based application. I have several message driven beans in my application, each listening on an MQ Series message ...
4
votes
3answers
3k views
Configurable values to MDB annotations
I'm trying to use this method for receiving mail in our EJB3 app. In short, that means creating an MDB with the following annotations:
@MessageDriven(activationConfig = { ...
3
votes
3answers
918 views
Ensuring serial processing of JMS messages in an OC4J cluster
We have an application that processes JMS message using a message driven bean. This application is deployed on an OC4J application server. (10.1.3)
We are planning to deploy this application on ...
2
votes
1answer
309 views
How to reference an embedded JCA resource adapater
For our current J2EE project based on JBoss, we need to interface with a remote system using message driven beans and a JCA resource adapter provided as a RAR file by a third party. I would like to ...
2
votes
5answers
1k views
When is messaging (e.g. JMS) an alternative for multithreading?
I work on a data processing application in which concurrency is achieved by putting several units of work on a message queue that multiple instances of a message driven bean (MDB) listen to. Other ...
2
votes
2answers
105 views
message driven bean - notification when deployed?
is it possible to get notified inside the bean (mdb in this case) that its deployment procedure has just finished?
2
votes
1answer
1k views
Message Driven Bean Selectors (JMS)
I have recently discovered message selectors
@ActivationConfigProperty(
propertyName="messageSelector",
propertyValue="Fragile IS TRUE")
My Question is: How can I make the selector ...
1
vote
1answer
23 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
1answer
96 views
JMS message to redelivery to queue
I am using Jboss MQ in my application.
I am trying to handle redelivered message to the JMS Queue.
Is there a way I can set some values in the original message I received in the consumer(First time I ...
1
vote
2answers
421 views
difference between MBean and JMS
Please let me know what is the difference between JBoss message driven beans and jms (java messaging service)
1
vote
3answers
629 views
jBoss deployment of message-driven bean spec violation
I have an java EE application which has one message-driven bean and it runs fine on JBoss 4, however when I configure the project for JBoss 6 and deploy on it, I get this error;
WARN ...
1
vote
1answer
430 views
problem with seam and mdb on jboss5.1
I have a problem when using a mdb as a seam component. In the bean I inject some other seam somponents.
The problem is that when the server restart after a crash and the mdb is deployed it starts ...
1
vote
1answer
289 views
PHP ODBC MDB Access on a Cloud Server
Hopefully quick question....
I have a .MDB file stored on my webserver and I'm trying to connect to it.
I have no way of "registering" it with a name in ODBC.
Is the only way to connect to it by ...
1
vote
1answer
308 views
Message driven bean not responding until client method is complete
I have a MDB deployed on Jboss 4.2.2 and a client on the same server that produces messages and expects a reply from the MDB via a temporary queue created before the message is sent.
When I run the ...
1
vote
1answer
491 views
How to auto create a JMS topic/queue on JBoss in a portable and per-application way?
It's simple: I have an MDB and an EJB that sends messages to a topic (or queue). JBoss complains that the topic is not bound to the JNDI context.
I want to have the topic/queue to be automatically ...
1
vote
1answer
575 views
Jboss Startup error
On an existing application I am trying to startup the JBOSS server and I get following error.
Unfortunately I do not know clearly as yet, what all has been configured and is being used on this jboss. ...
1
vote
1answer
774 views
JBoss MQ tutorial
I'm looking for a JBoss MQ tutorial (on JBoss Tools) so that I can write an MDB and a client.
I can find only JBoss Messaging.
1
vote
1answer
442 views
How can we have JBOSS MDB retry its connection if it fails at startup?
We have a server app that is deployed across to server machines, each running JBOSS 4.2.2. We use JBOSS messaging with MDBs to communicate between the systems. Currently we need to start the servers ...
1
vote
1answer
1k views
REQUIRES_NEW annotated method is executed without a transaction?
I have a stateless bean resposible for persisting entities to a database. This stateless bean is called by a message bean's onMessage method. The wired thing is that on the first message everything ...
1
vote
2answers
1k views
Ejb 3, message driven bean cooperating with a stateful session bean?
Hey! I'm relative new to both Java EE and Stackowerflow, please be kind :-)
I have a bunch of devices triggering Java messages to be sent on any state change. These devices are typically active for ...
0
votes
0answers
162 views
Deploy MDB with EJB 3 and JBoss AS 6
I'm a newbie about EJB 3 and I'd like deploy as simple EAR, which uses a MDB, on JBoss AS 6.
But, when I deploy my ear the following exception occurs:
16:53:37,500 ERROR ...
0
votes
0answers
261 views
MESSAGE DRIVEN BEAN (MDB) STOPS WORKING
I am running JBoss AS 6 Final on Ubuntu 10.10 i a using Eclipse for J2EE development, I have my MDB on the server, the problem is it sometimes stops working all of a sudden with no apparent reason. ...
0
votes
1answer
190 views
Where to configure the org.jboss.ejb3.mdb.MdbDelegateWrapper
I need to reduce the pool size of an MDB to 5 because it connect to an external resource that is limited in terms of connections. If I have 15 messages in my JMS queue, then only 5 msg are process ...
0
votes
0answers
394 views
Remote ActiveMQ as JMS Service for JBoss with JNDI Support?
i'm trying to set up a JBoss 6 with a remote ActiveMQ Server as a JMS Provider and have two questions concerning the current tutorials.
Most tutorials describe using the ActiveMQ Resoure Adapter and ...
0
votes
1answer
291 views
JBoss MDB - JMSBytesMessage class cast exception
I'm working on an EJB3 MDB that listen to a MQ queue in a distant server.
All is working fine (MDB triggered when a message is put into the listenned queue) except the treatment done by the MDB. For ...
0
votes
2answers
206 views
JBoss Messaging and Thread Priority
I'm using JBoss 5.1.0 GA together with JMS.
I have two message-driven beans.
Could someone explain the threading model to me? For example, does each MDB have a separate thread pool? Do they ...
0
votes
2answers
1k views
Jboss 5.1 ActiveMQ 5 standalone broker MDB setup
I'm attempting to use the sample broker that comes with ActiveMQ 5 with an MDB deployed on JBoss 5.1 AS.
I've deployed the activemq rar to the deploy directory.
I've deployed activemq-jms-ds.xml to ...
0
votes
1answer
815 views
MDB listening a Topic in JBoss 5.1
I have a topic configured correctly like this, in jboss 5.1:
<mbean code="org.jboss.jms.server.destination.TopicService"
name="jboss.messaging.destination:service=Topic,name=GreetingsTopic"
...
0
votes
2answers
2k views
Problem in creation MDB Queue connection at Jboss StartUp
I am not able to create a Queue connection in JBOSS4.2.3GA Version & Java1.5, as I am using MDB as per the below details.
I am putting this MDB in a jar file(named utsJar.jar) and copied it in ...
0
votes
1answer
1k views
Maximum number of messages sent to a Queue in OpenMQ?
I am currently using Glassfish v2.1 and I have set up a queue to send and receive messages from with Sesion beans and MDBs respectively. However, I have noticed that I can send only a maximum of 1000 ...
0
votes
2answers
2k views
JBoss Error in ejb-jar.xml for Message Driven Bean TextMDB: expected one res-ref-name tag
I've copied and pasted the example ejb-jar.xml and jboss.xml file from http://docs.jboss.org/jbossas/jboss4guide/r4/html/ch6.chapt.html#ch6.mdbejbjar.ex and I'm receiving the following error when ...
0
votes
3answers
2k views
J2EE - JPA - EJB3 - Transactions in MDB methods
I have resource local datasource (Oracle9i) deployed at JBoss 5.1.0:
<datasources>
<local-tx-datasource>
<jndi-name>OracleDS</jndi-name>
...
0
votes
2answers
469 views
Possible to stop MDB in Weblogic 8.x?
Is it possible to programatically stop an MDB from listening to a queue in Weblogic 8.1?
I know this can be done in JBoss and later versions of Weblogic but I wasn't sure if it's possible in 8.x.
0
votes
1answer
3k views
JBoss EJB3 MDB config
I am trying to understand some EJB 3 code running in JBoss 4.3.
We've got an ejb3-interceptors-aop.xml file configured in JBoss with some MDB configuration and then we've got the MDB Java class.
...
0
votes
0answers
575 views
JBOSS MDB - What is the use of Configuration Property Annotation: maxMessages [closed]
Possible Duplicate:
Configuring an MDB in JBOSS
Hi,
What is the use of maxMessages property and how this will affect performance.
Thanks,
Rod
0
votes
3answers
2k views
Configuring an MDB in JBOSS
How maxMessages property affects the MDB?
For example:
@ActivationConfigProperty(propertyName = "maxMessages", propertyValue="5").
How would this value affect if maxSessions is 10?
0
votes
1answer
1k views
How do specify clientId and subscriptionName for EJB3 message driven bean durable subscription without hard coding the values?
I have a server running JBoss4.2.1 containing a JMS Topic. I also have multiple terminals, each running their own JBoss with an EJB3 message driven bean that need to subscribe to the topic using ...
0
votes
2answers
111 views
How to notify web-module about job status performing in MDB (EJB3.0)?
We are using Message Driven Bean to generate large reports and process durable tasks. How can MDB notify web-module f.e. session listener about job status without client poll?
Thanks in advance.
0
votes
6answers
2k views
JMS Message Driven Bean worker synchronization
We are just starting to build our JMS architecture and have the following basic setup:
GLassfish v2.1
MDB listening on a Topic through a TopicConnectionFactory (all on local server)
Now, the MDB ...
0
votes
1answer
649 views
Controlling JMS Server: too many MDBeans created (weblogic)
I have an application that does a delayed operation. User generates 1 million messages that are stored in the JMS Queue and then a MDBeans are consuming these messages and performing some action and ...
0
votes
2answers
1k views
Should MDB call remove() after using stateless session bean?
Our years-old WebLogic J2EE application has a message-driven bean which makes use of a stateless session bean. The MDB onMessage method gets the home interface of the stateless session bean and calls ...
0
votes
1answer
610 views
JBoss 4.0.5 MDB Configuration
This one is beating me, and I have not been able to figure it out ... So here it goes.
I want to add a Message Drive Bean to my app which is packaged as a .ear file
Following the documentation I've ...