Return-Path: Delivered-To: apmail-incubator-cxf-issues-archive@locus.apache.org Received: (qmail 70764 invoked from network); 26 Jan 2007 16:34:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 26 Jan 2007 16:34:10 -0000 Received: (qmail 75084 invoked by uid 500); 26 Jan 2007 16:34:16 -0000 Delivered-To: apmail-incubator-cxf-issues-archive@incubator.apache.org Received: (qmail 75040 invoked by uid 500); 26 Jan 2007 16:34:16 -0000 Mailing-List: contact cxf-issues-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cxf-dev@incubator.apache.org Delivered-To: mailing list cxf-issues@incubator.apache.org Received: (qmail 75030 invoked by uid 99); 26 Jan 2007 16:34:15 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Jan 2007 08:34:15 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Jan 2007 08:34:09 -0800 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 29A827142A6 for ; Fri, 26 Jan 2007 08:33:49 -0800 (PST) Message-ID: <6615547.1169829229167.JavaMail.jira@brutus> Date: Fri, 26 Jan 2007 08:33:49 -0800 (PST) From: "Gary Tully (JIRA)" To: cxf-issues@incubator.apache.org Subject: [jira] Created: (CXF-393) All JMS message properties are always copied from source to destination MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org All JMS message properties are always copied from source to destination ----------------------------------------------------------------------- Key: CXF-393 URL: https://issues.apache.org/jira/browse/CXF-393 Project: CXF Issue Type: Bug Components: Transports Affects Versions: 2.0-M1 Reporter: Gary Tully Some JMS implementations are strict about the setting of properties. The properties valid on an incomming message are not valid for an outgoing message. CXF by default will copy all message properties from the input message to request headers and copy the headers to a reply. This can lead to failure to send reply messages. For example JMSX properties that indicate a message is a needs a reply have no business themselves in a reply. The fix would allow an exclued filter be specified on property read such that a set of known request propertys can be omitted/excluded from the headers. This could be applied on either the getter or setter. Since the setter is typically where the problem arises, limiting the JMS properties that can be set may be the best solution. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.