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=21930>. 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=21930 .Net not able to serialize data with doc/literal style. [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED | ------- Additional Comments From [EMAIL PROTECTED] 2003-07-30 08:00 ------- The Bug should be reopened because The changes in CVS work fine with simple types such as ---------------------------------------- public int returnadd(int a,int b) { return (a+b) } ---------------------------------------- but if we have a bean type ---------------------------------------- public class mybean { int a; int b; public void seta(int a) { this.a=a; } public int geta() { return this.a; } public void setb(int b) { this.b=b; } public int getb() { return this.b; } } ------------------------------------ and a method using the bean ------------------------------------ public mybean echo(mybean a) { return a; } ------------------------------------ the method invocation causes the right soap messages to be passed on wire but .net again fails to deserialize the data in the bean Ankit Gupta
