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"/> 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.