I have a response from web service in the following format,which gives me Employee's personal information, what is the best way to parse and store these contact in a mutable array.
<S_CONTACT>
<CONTACT_FNAME>jim</CONTACT_FNAME>
<CONTACT_LNAME>dsouza</CONTACT_LNAME>
<CONTACT_ID>111</CONTACT_ID>
<ORGID>111</ORGID>
</S_CONTACT>
<S_CONTACT>
<CONTACT_FNAME>peter</CONTACT_FNAME>
<CONTACT_LNAME>dsouza</CONTACT_LNAME>
<CONTACT_ID>111</CONTACT_ID>
<ORGID>222</ORGID>
</S_CONTACT>
Thanks in advance