From dev-return-26022-apmail-geronimo-dev-archive=geronimo.apache.org@geronimo.apache.org Wed Mar 01 10:14:36 2006 Return-Path: Delivered-To: apmail-geronimo-dev-archive@www.apache.org Received: (qmail 63327 invoked from network); 1 Mar 2006 10:14:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 1 Mar 2006 10:14:35 -0000 Received: (qmail 88637 invoked by uid 500); 1 Mar 2006 10:15:20 -0000 Delivered-To: apmail-geronimo-dev-archive@geronimo.apache.org Received: (qmail 88307 invoked by uid 500); 1 Mar 2006 10:15:19 -0000 Mailing-List: contact dev-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list dev@geronimo.apache.org Received: (qmail 88296 invoked by uid 99); 1 Mar 2006 10:15:19 -0000 Received: from [192.87.106.226] (HELO ajax.apache.org) (192.87.106.226) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Mar 2006 02:15:19 -0800 Received: from ajax.apache.org (ajax.apache.org [127.0.0.1]) by ajax.apache.org (Postfix) with ESMTP id F3BE2DD for ; Wed, 1 Mar 2006 11:14:39 +0100 (CET) Message-ID: <1258274823.1141208079996.JavaMail.jira@ajax.apache.org> Date: Wed, 1 Mar 2006 11:14:39 +0100 (CET) From: "Phani Balaji Madgula (JIRA)" To: dev@geronimo.apache.org Subject: [jira] Created: (GERONIMO-1662) ActiveMQ client not able to send message to destination in Tx session MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ActiveMQ client not able to send message to destination in Tx session ------------------------------------------------------------------------ Key: GERONIMO-1662 URL: http://issues.apache.org/jira/browse/GERONIMO-1662 Project: Geronimo Type: Bug Components: ActiveMQ Versions: 1.0 Environment: All supported platforms Reporter: Phani Balaji Madgula Hi, I observed the following when I was trying to port my MDBs on Geronimo. Session session = connection.createQueueSession(true,0); Queue queue = session.createQueue("PhaniQueue1"); MessageProducer sender = session.createProducer(queue); TextMessage message = session.createTextMessage("add item"); .... ..... sender.send(message); When the message is sent to "PhaniQueue1", an MDB has to pick it up. But in this case, it is not happening. No error in console or logs. When I change transactional session to non-Tx one, the message will be successfully processed.. Session session = connection.createQueueSession(false,Session.AUTO_ACKNOWLEDGE); I have also tested with standalone ActiveMQ. It is failing there also. Thanks phani -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira