I am not able to parse below soap response from a .net webservice,i am getting two type of response one is of anytype format which i have parsed it,but now i need to parse the below xml
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetReminderResponse xmlns="http://tempuri.org/">
<GetReminderResult>
<xs:schema id="NewDataSet" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xs:element name="NewDataSet" msdata:IsDataSet="true" msdata:UseCurrentLocale="true">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="Table">
<xs:complexType>
<xs:sequence>
<xs:element name="RemMessage" type="xs:string" minOccurs="0"/>
<xs:element name="InvM_Id" type="xs:int" minOccurs="0"/>
<xs:element name="DocType" type="xs:int" minOccurs="0"/>
<xs:element name="PrmR_TypeId" type="xs:int" minOccurs="0"/>
<xs:element name="PrmR_Id" type="xs:int" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>
<diffgr:diffgram xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:diffgr="urn:schemas-microsoft-com:xml-diffgram-v1">
<NewDataSet xmlns="">
<Table diffgr:id="Table1" msdata:rowOrder="0">
<RemMessage>Exeed Discount Limit on Invoice dated on 04/05/2015 for ANDREA NORONHA , from 3 - Lokhandwala Showroom</RemMessage>
<InvM_Id>78455</InvM_Id>
<DocType>3</DocType>
<PrmR_TypeId>3</PrmR_TypeId>
<PrmR_Id>2213</PrmR_Id>
</Table>
<Table diffgr:id="Table2" msdata:rowOrder="1">
<RemMessage>Exeed Discount Limit on Invoice dated on 04/05/2015 for ADITI SHAH , from 3 - Lokhandwala Showroom</RemMessage>
<InvM_Id>78456</InvM_Id>
<DocType>3</DocType>
<PrmR_TypeId>3</PrmR_TypeId>
<PrmR_Id>2214</PrmR_Id>
</Table>
</NewDataSet>
</diffgr:diffgram>
</GetReminderResult>
</GetReminderResponse>
</soap:Body>
</soap:Envelope>
there is schema of data types in Your Soap-response wchich is completly weird for me. But i've built code that ignores xs:schema part and creates array of GetReminder objects (type taken from Your previous post: How to parse diffgram anytype response from .net webservice). I think, that better idea would be creating KVMSerializables for the structure but the way below it works great too ;)
Regards, Marcin