I have an API on the site that issues a string with XML when sending a GET request.
I managed to save this XML from the site to a file using this code:
Memo1.Text:=Idhttp1.get('http://justknow.ru/xml.php?key=c9fce58afb5d208b953b41e134dc6229&func=get&fid=1'); memo1.Lines.SaveToFile('xml.xml');
But now I don’t want to parse XML myself. Are there any standard components that will help to break all the XML code into some kind of array or database?