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=14130>. 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=14130 Type is not used during serialization of MessageElement. [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WONTFIX ------- Additional Comments From [EMAIL PROTECTED] 2002-11-05 16:43 ------- Chris, setType has been removed from MessageElement.java. the xsi type information is gleaned from the actual object that needs to be serialized. That's why xsi:type="xsd:string" was being generated for the child. If you had used MessageElement me2 = new MessageElement ("http://www.wolfram.com", "Child", new Integer("1")); you would see xsd:int instead of xsd:string. Thanks, dims