users@glassfish.java.net

MessageDrivenBean not triggered

From: Alexis Midon <alexismidon_at_gmail.com>
Date: Sun, 22 Oct 2006 20:46:51 +0200

Hi guys,


I post successfully (i.e. without exceptions) some messages to a topic.
However my MDB is not triggered and that's my problem.

How can check that my MDB is "deployed"?
I have some doubts about the annotations set on my MDB, where can I find out
a complete list off the allowed annotation (especially the
@ActivationConfigProperty)?

Thanks in advance for your help.

Alexis

ps: I use glassfish-v2-b22 and here is my MDB source code:

@MessageDriven(mappedName = "jms/topic/order", activationConfig = {
@ActivationConfigProperty(propertyName = "subscriptionDurability",
propertyValue = "Durable")
        , @ActivationConfigProperty(propertyName = "clientId", propertyValue
= "MyID")
        , @ActivationConfigProperty(propertyName = "subscriptionName",
propertyValue = "EmailSender")
        }
)
public class EmailSenderBean implements MessageListener{
....
}