I need to simply read an .xml file; like this:
<exchanges>
<exchange>
<timestamp>2010-08-19 17:15:56</timestamp>
<userid>Elijah-Woods-MacBook-Pro.local</userid>
<clientname>elijah</clientname>
<botid>Jarvis</botid>
<input>firsthello</input>
<response>Hello, sir. How may I help you?</response>
</exchange>
</exchanges>
Then, parse whatever's in between the 'response' tag.
Elijah