we have a very long XMLResponse from one web service, and we want to optimize the time of parsing this XMLResponse, so the strategy is to parse the XMLResponse line by line until we have what we need from the XMLResponse => the mandatory elements
we know the mandatory elements and we know also that the XMLResponse is valid XML object, so we can stop reading the string before arriving at the end.
so please guys: what are the tools that gonna help us to do this?
thank you in advance ...