You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Ryan Diehl (JIRA)" <ji...@apache.org> on 2008/11/05 17:03:44 UTC

[jira] Updated: (CXF-1902) Generated WSDL has incorrect character casing

     [ https://issues.apache.org/jira/browse/CXF-1902?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ryan Diehl updated CXF-1902:
----------------------------

    Description: 
This issue occurs when generating the WSDL from a Java class.  See the following code

private Integer zOrder;

public Integer getZOrder() { return this.zOrder; }

public void setZOrder(final Integer zOrder) { this.zOrder = zOrder; }

The above code will generate the following WSDL snippet:

<xs:element minOccurs="0" name="ZOrder" nillable="true" type="xs:int"/>

Notice the capital Z.  Based on other behavior, I would expect that the WSDL would look like:

<xs:element minOccurs="0" name="zOrder" nillable="true" type="xs:int"/>


  was:
This issue occurs when generating the WSDL from a Java class.  See the following code

private Integer zOrder;

public Integer getZOrder() { return this.zOrder; }

public void setZOrder(final Integer zOrder) { this.zOrder = zOrder; }

The above code will generate the following WSDL snippet:

<xs:element minOccurs="0" name="ZOrder" nillable="true" type="xs:int"/>

Based on other behavior, I would expect that the WSDL would look like:

<xs:element minOccurs="0" name="zOrder" nillable="true" type="xs:int"/>



> Generated WSDL has incorrect character casing
> ---------------------------------------------
>
>                 Key: CXF-1902
>                 URL: https://issues.apache.org/jira/browse/CXF-1902
>             Project: CXF
>          Issue Type: Bug
>    Affects Versions: 2.0.7
>            Reporter: Ryan Diehl
>            Priority: Minor
>
> This issue occurs when generating the WSDL from a Java class.  See the following code
> private Integer zOrder;
> public Integer getZOrder() { return this.zOrder; }
> public void setZOrder(final Integer zOrder) { this.zOrder = zOrder; }
> The above code will generate the following WSDL snippet:
> <xs:element minOccurs="0" name="ZOrder" nillable="true" type="xs:int"/>
> Notice the capital Z.  Based on other behavior, I would expect that the WSDL would look like:
> <xs:element minOccurs="0" name="zOrder" nillable="true" type="xs:int"/>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.