Does anyone know how to obtain the attributes of an xml tag invoquing a SOAP webservice?
I'm able to get the NSDictionary, but the attributes are missing.
Example:
XML returned by the service:
<son>
<child name="XYZ">
</son>
If I use the WSMethodInvocationInvoke method to invoque it, I will get the NSDictionary whith a "son" object but I wont get the "child" name attribute so it will be nil
but if the webservice returns
<son>
<child>XYZ</son>
</son>
I will get child the object with a value of XYZ
Any clue?