Return-Path: Delivered-To: apmail-geronimo-user-archive@www.apache.org Received: (qmail 21428 invoked from network); 1 Nov 2007 03:44:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 1 Nov 2007 03:44:08 -0000 Received: (qmail 98938 invoked by uid 500); 1 Nov 2007 03:43:49 -0000 Delivered-To: apmail-geronimo-user-archive@geronimo.apache.org Received: (qmail 98918 invoked by uid 500); 1 Nov 2007 03:43:49 -0000 Mailing-List: contact user-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: user@geronimo.apache.org List-Id: Delivered-To: mailing list user@geronimo.apache.org Received: (qmail 98907 invoked by uid 99); 1 Nov 2007 03:43:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 31 Oct 2007 20:43:49 -0700 X-ASF-Spam-Status: No, hits=2.6 required=10.0 tests=DNS_FROM_OPENWHOIS,SPF_HELO_PASS,SPF_PASS,WHOIS_MYPRIVREG X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of lists@nabble.com designates 216.139.236.158 as permitted sender) Received: from [216.139.236.158] (HELO kuber.nabble.com) (216.139.236.158) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Nov 2007 03:43:52 +0000 Received: from isper.nabble.com ([192.168.236.156]) by kuber.nabble.com with esmtp (Exim 4.63) (envelope-from ) id 1InQxv-0006JX-LP for user@geronimo.apache.org; Wed, 31 Oct 2007 20:43:31 -0700 Message-ID: <13523133.post@talk.nabble.com> Date: Wed, 31 Oct 2007 20:43:31 -0700 (PDT) From: jthinaka To: user@geronimo.apache.org Subject: Geronimo 2.0 MDB is not Triggering MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: jthinaka+nabble@gmail.com X-Virus-Checked: Checked by ClamAV on apache.org This is a repeat post of an earlier post that didn't get any attention :-/ I'll try a shorter version. The core of my problem is that I know that a message is being enqueued on the queue, and yet the MDB doesn't get triggered. I have turned on verbose logging in Geronimo, and ensured that my code is pushing messages on to the queue, but the MDB onMessage() method is not called. Here's what the MDB looks like: @MessageDriven(mappedName = "CallFinishMDB", activationConfig = { @ActivationConfigProperty(propertyName = "acknowledgeMode", propertyValue = "Auto-acknowledge"), @ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Queue"), @ActivationConfigProperty(propertyName="destination", propertyValue="CallFinishQueue") } ) public class CallFinishMDB implements MessageListener { /** * Logger for this class */ private static final Logger logger = Logger.getLogger(CallFinishMDB.class); public void onMessage(Message arg0) { try { System.err.println("YIPEEEEE I was called"); processMessage(arg0); } catch(Exception e) { logger.error(e); } The message "YIPEEEEE I was called" is never seen in the Geronimo.log file. CallFinishQueue has over 90 messages in it. Any/all help will be greatly appreciated! -- View this message in context: http://www.nabble.com/Geronimo-2.0-MDB-is-not-Triggering-tf4729311s134.html#a13523133 Sent from the Apache Geronimo - Users mailing list archive at Nabble.com.