SoapObject is used when we need to get the Response for a Class type, like Customer, Product, etc. (From the SoapObject you need to iterate over the values inside the SoapResponse.) SoapPrimitive is used for Primitive datatypes like Integer, and Boolean.

For example, in the following code I am expecting a Boolean value from SoapResponse:

And in the following code, I need to get the Response as an Object:

Leave a Comment