Bug 997380

Summary: Anonymous types in an exception aren't generated in WSDL
Product: [JBoss] JBoss Enterprise Application Platform 6 Reporter: Tadayoshi Sato <tasato>
Component: Web ServicesAssignee: Alessio Soldano <asoldano>
Status: CLOSED NOTABUG QA Contact: Rostislav Svoboda <rsvoboda>
Severity: high Docs Contact: Russell Dickenson <rdickens>
Priority: unspecified    
Version: 6.1.0CC: klape
Target Milestone: ---   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2014-06-05 10:15:48 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Attachments:
Description Flags
Reproducer none

Description Tadayoshi Sato 2013-08-15 11:02:24 UTC
Created attachment 786888 [details]
Reproducer

Platform BZ for https://issues.jboss.org/browse/JBWS-3682

Anonymous types (annotated with @XmlType(name = "")) in an exception class aren't generated at all in WSDL.

Web service classes:
--------------------
@WebService
public class GreetingService {
  @WebMethod
  public void hello() throws MyException {}
  ...

public class MyException extends Exception {
  private String     str;
  private MyAnonType myAnonObj;

  public String getStr() { return str; }
  public void setStr(String str) { this.str = str; }

  public MyAnonType getMyAnonObj() { return myAnonObj; }
  public void setMyAnonObj(MyAnonType myAnonObj) { this.myAnonObj = myAnonObj; }
  ...

@XmlType(name = "")
public class MyAnonType { ...

Generated WSDL:
---------------
  <wsdl:types>
<xs:schema ...>
  ...
  <xs:complexType name="MyException">
    <xs:sequence>
      <xs:element name="str" nillable="true" type="xs:string"/>
    </xs:sequence>
  </xs:complexType>

Note that the same type (MyAnonType) is generated in WSDL if the @XmlType(name = "") annotation is removed.

Comment 1 JBoss JIRA Server 2014-06-05 10:12:39 UTC
Tadayoshi Sato <tadayosi> updated the status of jira JBWS-3682 to Resolved

Comment 2 Tadayoshi Sato 2014-06-05 10:15:48 UTC
Closed as a correct way to fix the issue is provided. See Grzegorz' comment at CXF-5208 for how to fix it.

Comment 4 JBoss JIRA Server 2015-04-25 20:30:16 UTC
Alessio Soldano <asoldano> updated the status of jira JBWS-3682 to Closed