First post here!
Ok.. I have a contact XML as follows:
<contact>
<item>
<ContactData type="String">+4444444444</ContactData>
<Type type="String">1</Type>
</item>
<item>
<ContactData type="String">+9999999999</ContactData>
<Type type="String">3</Type>
</item>
<item>
<ContactData type="String">anyone123452154@gmail.com</ContactData>
<Type type="String">4</Type>
</item>
<item>
<ContactData type="String">+5554444444</ContactData>
<Type type="String">2</Type>
</item>
</contact>
As you can see type 4 is an e-mail, type 1 is a telephone number, type 2 is a fax and type 3 is a mobile number.
So here's my scenario:
I (probably) need to iterate through all these nodes. Check to see if there is a telephone number (highest priority) and choose it. If there's no telephone number we need to check for mobile number (second highest priority). If mobile number is not available we choose e-mail (or we do nothing). How can I achieve it?
Thanks..
