I want to get a xml file, which I can request by an http request into an object. I'm looking for something similar to this (in a controller):
@ticket = request "http://example.com?ticketid=1234"
http://tickets.com?ticketid=1234 returns an XML (tickets.com is not the site the app is running on).
I then want to parse @ticket, to get the data out of the xml.
Thx a lot for all your help!