I need to get book information from isbndb.com trough XML service using this link http://isbndb.com/api/books.xml?access_key=12345678&index1=isbn&value1=9780321635345.
Any Idea how to do that in delphi?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need a HTTP client (lets say Indy) and an XML parser. For XML parser just use OmniXML for instance. Indy is included with Delphi7. Then just write a code like this:
Now you have your XML document parsed as DOM in memory. Just use it 🙂