I want parse a SOAP xml response in C# (but I can't use standard SOAP interface, because wsld is incorrect).
When parsing I want to have all elements with name (list element with name) and access to all its children.
The overall appearance of the XML:
<return>
<item>
<attr1>1</attr1>
<attr2>X</attr2>
</item>
<item>
<attr1>2</attr1>
<attr2>Y</attr2>
</item>
...
</return>
Regards