DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=9210>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=9210

Axis converts some first character elements to lowercase





------- Additional Comments From [EMAIL PROTECTED]  2002-05-28 17:36 -------
The AXIS runtime does not consult the wsdl file.

So by default, a bean such as:

public class Address {
    private String _FOO;
    private String _D_TSENT;

    public String getFOO() { return _FOO; }
    public String getD_TSENT() { return _D_TSENT; }
  }

Will be serialized across the wire as FOO and d_TSENT according to the JSR 101
mapping rules.

To get different behaviour, the bean must be generated using WSDL2Java (or
with WSDL2Java -H) so that appropriate meta data is added to the bean to 
cause serialization as D_TSENT.

Reply via email to