Return-Path: Delivered-To: apmail-cxf-issues-archive@www.apache.org Received: (qmail 20020 invoked from network); 23 Nov 2009 04:33:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 23 Nov 2009 04:33:05 -0000 Received: (qmail 77231 invoked by uid 500); 23 Nov 2009 04:33:05 -0000 Delivered-To: apmail-cxf-issues-archive@cxf.apache.org Received: (qmail 77181 invoked by uid 500); 23 Nov 2009 04:33:04 -0000 Mailing-List: contact issues-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list issues@cxf.apache.org Received: (qmail 77171 invoked by uid 99); 23 Nov 2009 04:33:04 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 23 Nov 2009 04:33:04 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 23 Nov 2009 04:33:01 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id A791C234C04C for ; Sun, 22 Nov 2009 20:32:39 -0800 (PST) Message-ID: <587372731.1258950759684.JavaMail.jira@brutus> Date: Mon, 23 Nov 2009 04:32:39 +0000 (UTC) From: "javier (JIRA)" To: issues@cxf.apache.org Subject: [jira] Updated: (CXF-2550) transactions don't work in jaxws Endpoint with jms transport In-Reply-To: <1775800682.1258658979773.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/CXF-2550?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] javier updated CXF-2550: ------------------------ Affects Version/s: 2.2.5 > transactions don't work in jaxws Endpoint with jms transport > ------------------------------------------------------------- > > Key: CXF-2550 > URL: https://issues.apache.org/jira/browse/CXF-2550 > Project: CXF > Issue Type: Bug > Components: Transports > Affects Versions: 2.2.4, 2.2.5 > Reporter: javier > Attachments: jms_queue.zip > > > i'm trying cxf with jms transport with transaction to process a message and it is dequeued when the implementor object throw an error . > the message is inonly and the code is: > EndpointImpl endpoint = new EndpointImpl(new ObjectImpl()); > endpoint.setAddress("jms://"); > ActiveMQConnectionFactory connectionFactory = new ActiveMQConnectionFactory("tcp://localhost:61616"); > JMSConfiguration jmsConfig = new JMSConfiguration(); > jmsConfig.setConnectionFactory(connectionFactory); > jmsConfig.setTargetDestination("sso2"); > jmsConfig.setSessionTransacted(true); > jmsConfig.setPubSubDomain(false); > jmsConfig.setUseJms11(true); > jmsConfig.setTransactionManager(new JmsTransactionManager(connectionFactory)); > JMSConfigFeature jmsConfigFeature = new JMSConfigFeature(); > jmsConfigFeature.setJmsConfig(jmsConfig); > endpoint.getFeatures().add(jmsConfigFeature); > endpoint.publish(); > seems that the exception never arrive to AbstractMessageListenerContainer.doExecuteListener but it is catched inside -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.