Return-Path: X-Original-To: apmail-cxf-issues-archive@www.apache.org Delivered-To: apmail-cxf-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 905C010F8D for ; Tue, 4 Feb 2014 16:06:30 +0000 (UTC) Received: (qmail 40795 invoked by uid 500); 4 Feb 2014 16:06:28 -0000 Delivered-To: apmail-cxf-issues-archive@cxf.apache.org Received: (qmail 40553 invoked by uid 500); 4 Feb 2014 16:06:16 -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 40011 invoked by uid 99); 4 Feb 2014 16:06:11 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Feb 2014 16:06:11 +0000 Date: Tue, 4 Feb 2014 16:06:11 +0000 (UTC) From: "Andrei Shakirin (JIRA)" To: issues@cxf.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (CXF-5539) WS-A with JMS for OneWay: empty response is sent to client queue MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Andrei Shakirin created CXF-5539: ------------------------------------ Summary: WS-A with JMS for OneWay: empty response is sent to client queue Key: CXF-5539 URL: https://issues.apache.org/jira/browse/CXF-5539 Project: CXF Issue Type: Bug Reporter: Andrei Shakirin I am struggling with one effect appearing in case of using WS-A, OneWay message pattern and JMS transport. The problem is that service tries to send empty response to the client JMS queue. Empty message is sent by OneWayProcessorInterceptor. Without WS-A it is not a problem, because JMSDestination.sendExchange() checks if exchange is oneway and if yes, returns immediately. But if WS-A is active, MAPAggregator creates decoupled destination with JMSConduit as a sender. JMSConduit.sendExchange() doesn't has any checks for oneway and it tries to send empty response to ReplyTo address. If ReplyTo is anonymous or none, empty response is sent using http conduit to http://www.w3.org/2005/08/addressing/none address. The question does the rebaseResponse and decoupled destination make sense for oneway at all? Client doesn't expect any response for JMS in this case (for HTTP 202). -- This message was sent by Atlassian JIRA (v6.1.5#6160)