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 CE3C210911 for ; Fri, 6 Dec 2013 09:34:59 +0000 (UTC) Received: (qmail 61690 invoked by uid 500); 6 Dec 2013 09:34:00 -0000 Delivered-To: apmail-cxf-issues-archive@cxf.apache.org Received: (qmail 61604 invoked by uid 500); 6 Dec 2013 09:33:47 -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 61243 invoked by uid 99); 6 Dec 2013 09:33:35 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 06 Dec 2013 09:33:35 +0000 Date: Fri, 6 Dec 2013 09:33:35 +0000 (UTC) From: "Jim Ma (JIRA)" To: issues@cxf.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (CXF-5437) JAXBDataBinding can not handle the exception with generic objects like ObjectWithGenerics MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Jim Ma created CXF-5437: --------------------------- Summary: JAXBDataBinding can not handle the exception with generic objects like ObjectWithGenerics Key: CXF-5437 URL: https://issues.apache.org/jira/browse/CXF-5437 Project: CXF Issue Type: Bug Components: JAXB Databinding Affects Versions: 2.6.11, 2.7.8, 3.0.0-milestone1 Reporter: Jim Ma Assignee: Jim Ma Fix For: 3.0.0-milestone2, 2.6.12, 2.7.9 When the Exeception has some generics object like : {code} @javax.xml.ws.WebFault public class GenericsException extends Exception { private static final long serialVersionUID = 1L; private ObjectWithGenerics obj; public ObjectWithGenerics getObj() { return obj; } public void setObj(ObjectWithGenerics obj) { this.obj = obj; } } {code} Both the wsdl generated from the exception class is wrong and soap fault message is not expected. -- This message was sent by Atlassian JIRA (v6.1#6144)