I am getting up to speed in Linq to XML in C# and attempting to parse the following message and don\'t seem to be making much progress. Here is the soap message I am not sur
You can get your XML into an XElement an then just do:
rsp.Descendants("Lookup").ToList();
Or
rsp.Descendants("objIn").ToList();
I think this is the best way to do it. I think that XElement is the best choice.