Return-Path: Delivered-To: apmail-cxf-issues-archive@www.apache.org Received: (qmail 43259 invoked from network); 23 Jul 2008 13:02:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 23 Jul 2008 13:02:04 -0000 Received: (qmail 17335 invoked by uid 500); 23 Jul 2008 13:02:04 -0000 Delivered-To: apmail-cxf-issues-archive@cxf.apache.org Received: (qmail 17300 invoked by uid 500); 23 Jul 2008 13:02:03 -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 17289 invoked by uid 99); 23 Jul 2008 13:02:03 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Jul 2008 06:02:03 -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; Wed, 23 Jul 2008 13:01:07 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 765B3234C179 for ; Wed, 23 Jul 2008 06:01:32 -0700 (PDT) Message-ID: <22301101.1216818092483.JavaMail.jira@brutus> Date: Wed, 23 Jul 2008 06:01:32 -0700 (PDT) From: "Martin Muenstermann (JIRA)" To: issues@cxf.apache.org Subject: [jira] Created: (CXF-1716) Wrong namespace for faultcode MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Wrong namespace for faultcode ----------------------------- Key: CXF-1716 URL: https://issues.apache.org/jira/browse/CXF-1716 Project: CXF Issue Type: Bug Components: Soap Binding Affects Versions: 2.1.1 Reporter: Martin Muenstermann When throwing a SoapFault constructed using SoapFault.FAULT_CODE_CLIENT the generated response contains ns1:client... I think the SOAP spec http://www.w3.org/TR/2000/NOTE-SOAP-20000508/#_Toc478383510 suggests that the faultcode should be in the envelope namespace. cnf. org/apache/cxf/interceptor/Fault.java maybe should be changed to public static final QName FAULT_CODE_CLIENT = new QName("http://schemas.xmlsoap.org/soap/envelope/", "Client"); public static final QName FAULT_CODE_SERVER = new QName("http://schemas.xmlsoap.org/soap/envelope/", "Server"); (probably only in the inherited SoapFault?) Thanks, Martin -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.