Closed GoogleCodeExporter closed 8 years ago
You should not be using bodyIn and bodyOut like that as far as I know. What
are you trying to do anyway? bodyOut should just be assembled and you should
work with getResponse instead of bodyIn.
Somehow the new instance seem to associated to the envelope. Might be bug in
newInstance. Feel free to investigate and provide a patch with unit test.
Original comment by mosa...@gmail.com
on 6 Jan 2012 at 9:10
I want to copy a SoapObject :) in this way but i do it in other way but i write
about this becaouse this is a bug i think.
Original comment by drozddaw...@gmail.com
on 6 Jan 2012 at 9:54
Fair enough.
Original comment by mosa...@gmail.com
on 6 Jan 2012 at 10:05
Feel free to investigate and provide a fix..
Original comment by mosa...@gmail.com
on 10 Apr 2012 at 6:16
Looks like the problem is in the method newInstance() on the class SoapObject
as the reference to PropertyInfo object is being copied to the new instance
instead of clonning their attributes too.
Object prop = properties.elementAt(propIndex);
if(prop instanceof PropertyInfo) {
PropertyInfo propertyInfo = (PropertyInfo) properties.elementAt(propIndex);
o.addProperty(propertyInfo);
} else if(prop instanceof SoapObject) {
o.addSoapObject(((SoapObject)prop).newInstance());
}
I can work on fix this
Original comment by jose.cas...@gmail.com
on 11 May 2012 at 3:13
That would be great. If you fix it and send a pull request with the changes on
github we can take it from there and pull it in for the next release.
Original comment by mosa...@gmail.com
on 11 May 2012 at 7:53
Fix is now in master and will be released with 2.6.5
Original comment by mosa...@gmail.com
on 24 May 2012 at 4:09
Original issue reported on code.google.com by
drozddaw...@gmail.com
on 6 Jan 2012 at 8:58