It it possible for objective c to compile xml data (aiml files for example)??
I’m looking for it to compile AIML files then be able to “chat” with the files using objective c. Is there a XMLView or something??? Any ideas??
Elijah
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.
What do you mean by “compiling”? There’s no such concept as compiling a generic XML file. I don’t have a detailed understanding of
aimlfiles, but it’s not that you want to view the XML data itself in it, right? Or is that what you want?I suppose you want to make an
aiml-based bot which operates based on data given in theaimlfile. Then what you need is not an XML viewer; rather, you need an implementation ofaimlbot. This is not about XML per se.You might have misunderstood, but XML is not a programming language in itself; it’s just a nice way to organize data in a plain text. It’s not that you can take an XML file, compile and run it just as you would do with a C/C++/Objective-C source code.
You should have a look at the list of the implementations there: http://www.alicebot.org/downloads/programs.html
Objective-C is a superset of C, and you can also use C++ together using Objective-C++. So you should be able to use the C++ implementations listed there.