Return-Path: Delivered-To: apmail-cxf-issues-archive@www.apache.org Received: (qmail 34802 invoked from network); 5 Aug 2008 18:37:05 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Aug 2008 18:37:05 -0000 Received: (qmail 81383 invoked by uid 500); 5 Aug 2008 18:37:04 -0000 Delivered-To: apmail-cxf-issues-archive@cxf.apache.org Received: (qmail 81370 invoked by uid 500); 5 Aug 2008 18:37: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 81218 invoked by uid 99); 5 Aug 2008 18:37:04 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Aug 2008 11:37:04 -0700 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; Tue, 05 Aug 2008 18:36:17 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 4B900234C199 for ; Tue, 5 Aug 2008 11:36:44 -0700 (PDT) Message-ID: <1175392899.1217961404308.JavaMail.jira@brutus> Date: Tue, 5 Aug 2008 11:36:44 -0700 (PDT) From: "Iman Rahmatizadeh (JIRA)" To: issues@cxf.apache.org Subject: [jira] Created: (CXF-1733) SoapPreProtocolOutInterceptor overrides SoapActionOutInterceptor MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org SoapPreProtocolOutInterceptor overrides SoapActionOutInterceptor ----------------------------------------------------------------- Key: CXF-1733 URL: https://issues.apache.org/jira/browse/CXF-1733 Project: CXF Issue Type: Bug Components: Soap Binding Affects Versions: 2.1.1 Reporter: Iman Rahmatizadeh SoapActionOutInterceptor appends ";action=blaBla" to the content-type header : String ct = (String) message.get(Message.CONTENT_TYPE); if (ct.indexOf("action=\"") == -1) { ct = new StringBuilder().append(ct) .append("; action=").append(action).toString(); message.put(Message.CONTENT_TYPE, ct); } where after that SoapPreProtocolOutInterceptor resets it to the string without the action : message.put(Message.CONTENT_TYPE, soapVersion.getContentType()); -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.