Skip to content Skip to sidebar Skip to footer

Ksoap2 Serialisation Error

I'm using kSoap2 to connect to a WCF service from an android device but I get an serialisation error: Cannot serialize: CompositeType : StringValue = Test, BoolValue = true Here is

Solution 1:

This reply might be too little and too late, but I have noticed a problem with boolean params.

I just changed the booleans to ints and my services worked fine! you will also need to set the web service params / objects to use int's and then convert to bools if you like!

Post a Comment for "Ksoap2 Serialisation Error"