I have a SOAP web service that returns an XML in this format
<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body>
<ns1:GetResponse>
<ret SOAP-ENC:arrayType="ns2:Map[2]" xsi:type="SOAP-ENC:Array">
<item xsi:type="ns2:Map">
<item>
<key xsi:type="xsd:string">ProtocolId</key>
<value xsi:type="xsd:string">1</value>
</item>
<item>
<key xsi:type="xsd:string">Title</key>
<value xsi:type="xsd:string">Some Title</value>
</item>
<item>
<key xsi:type="xsd:string">Text</key>
<value xsi:type="xsd:string"> Some Text </value>
</item>
</item>
<item xsi:type="ns2:Map">
<item>
<key xsi:type="xsd:string">ProtocolId</key>
<value xsi:type="xsd:string">2</value>
</item>
<item>
<key xsi:type="xsd:string">Title</key>
<value xsi:type="xsd:string">Another Title</value>
</item>
<item>
<key xsi:type="xsd:string">Text</key>
<value xsi:type="xsd:string">Another Text </value>
</item>
</item>
</ret>
</ns1:GetResponse>
</SOAP-ENV:Body>
How to write a parser for this kind of XML. If you have some examples, it will be of great help.
Thanks
Mukul