GET from remote sites and parsing RESPONSE xml

For example, this url returns some xml:
http://www.mysite.com/xml

What is the correct way to perform a GET on this url, and then parse the
RESPONSE xml?

Could someone shine some light on a poor soul? :slight_smile:

I found a related post that kinda solved my problem
http://www.ruby-forum.com/topic/116#394

I looked into flickr.rb and I saw the author used,
require ‘net/http’
require ‘xmlsimple’.

Everything makes sense now following his script.
Anyway, this is solved