Hi,
I'm trying to parse a SOAP response that contains nested ComplexType
s using the kSOAP library on Android 2.1.
<event att1="value1" att2="value2" att3="value3">
<tag2> ... </tag2>
<tag3> ... </tag3>
</event>
I've implemented my own class Event
that implements org.ksoap2.serialization.KvmSerializable
to parse this response.
It is not clear to me if and how I can parse/deserialize the attributes (att1
, att2
and att3
) of the event
node. Is it even possible with the current kSOAP implementation?
Thanks.