handling of getPropertyCount get's wrong on classes for send AND receive
GoogleCodeExporter opened this issue · 1 comments
GoogleCodeExporter commented
What steps will reproduce the problem?
1. make a simple String Vector class for KvmSerializable
2. use this.size() for getPropertyCount as it indicates the size of the Vector
3. call the service, the Vector is fully send
4. parsing fails with "Unknown Property" when receiving the String Vector
5. switch getPropertyCount to return a static 1
6. call the service, only the first entry of the Vector is send
7. parsing successful when receiving the String Vector
What is the expected output? What do you see instead?
Sending of all members from the Vector.
Successful parsing on receiving the Vector.
What version of the product are you using? On what operating system?
3.3.0
linux arch
android api 19
Please provide any additional information below.
workaround:
public int getPropertyCount() {
return this.size() > 0 ? this.size() : 1;
}
Original issue reported on code.google.com by post6...@gmail.com
on 14 Aug 2014 at 5:19
GoogleCodeExporter commented
The project is migrating to github. If you believe this issue is still valid
and should be tracked please file a new issue at
https://github.com/simpligility/ksoap2-android/issues
Original comment by mosa...@gmail.com
on 7 Aug 2015 at 5:35
- Changed state: AwaitingContribution