You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "sophie (Jira)" <ji...@apache.org> on 2020/01/03 23:18:00 UTC

[jira] [Commented] (CXF-6747) XSD to Java problem with enums

    [ https://issues.apache.org/jira/browse/CXF-6747?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17007827#comment-17007827 ] 

sophie commented on CXF-6747:
-----------------------------

Who can tell me, has this bug been fixed? in a later version?  any long-term fix other than workaround ? Thx.

> XSD to Java problem with enums
> ------------------------------
>
>                 Key: CXF-6747
>                 URL: https://issues.apache.org/jira/browse/CXF-6747
>             Project: CXF
>          Issue Type: Bug
>          Components: JAXB Databinding
>    Affects Versions: 3.0.1
>            Reporter: Dusan Slivka
>            Assignee: Daniel Kulp
>            Priority: Major
>             Fix For: Invalid
>
>         Attachments: Screen Shot 2018-05-04 at 10.15.22 AM.png, Screen Shot 2018-05-04 at 10.21.49 AM.png
>
>
> Starting with version 3, roundtrip wsdl -> Java -> wsdl produces output wsdl different from wsdl on input, if there are enums used. For example, I have the folowing XSD type in source wsdl:
> {code:xml}
>   <xs:simpleType name="checksumType">
>     <xs:restriction base="xs:string">
>       <xs:enumeration value="MD5"/>
>       <xs:enumeration value="SHA256"/>
>     </xs:restriction>
>   </xs:simpleType>
>   <xs:complexType name="DigestType">
>     <xs:sequence>
>       <xs:element minOccurs="0" name="digestValue" type="xs:string"/>
>       <xs:element minOccurs="0" name="digestType" type="tns:checksumType"/>
>     </xs:sequence>
>   </xs:complexType>
> {code}
> which produces (cxf-codegen-plugin:3.0.5:wsdl2java) the following Java code:
> {code:java}
> @XmlAccessorType(XmlAccessType.FIELD)
> @XmlType(name = "DigestType", propOrder = {
>     "digestValue",
>     "digestType"
> })public class DigestType {
>     protected String digestValue;
>     @XmlSchemaType(name = "string")  // WHY??
>     protected ChecksumType digestType;
> }
> {code}
> And resulting wsdl for published service looks like this:
> {code:xml}
>   <xs:simpleType name="checksumType">
>     <xs:restriction base="xs:string">
>       <xs:enumeration value="MD5"/>
>       <xs:enumeration value="SHA256"/>
>     </xs:restriction>
>   </xs:simpleType>
>   <xs:complexType name="DigestType">
>     <xs:sequence>
>       <xs:element minOccurs="0" name="digestValue" type="xs:string"/>
>       <xs:element minOccurs="0" name="digestType" type="xs:string"/>
>       <!-- xs:string instead of tns:checksumType -->
>     </xs:sequence>
>   </xs:complexType>
> {code}
> The problem is caused by @XmlSchemaType(name = "string") annotation. I think resulting wsdl should be equal to source wsdl.
> See also:
> [https://github.com/gf-metro/jaxb/issues/21]
> [http://stackoverflow.com/questions/33346803/how-to-tell-jaxb-not-to-generate-xmlschematype-annotation]



--
This message was sent by Atlassian Jira
(v8.3.4#803005)