require 'net/http'
response = Net::HTTP.get_response('...','/aa.txt')
XmlSimple? .new.xml_in(response.body)["created-at"]
response = Net::HTTP.get_response(URI.parse('http://localhost:3000/info/post.xml?post=http//dsdsd.com'))
--
HecPeAre - 22 Sep 2007
a=XmlSimple.new.xml_in(response.body)
a["transfer"].each{|t| puts t["id"][0]["content"] + "; " + t["amount"][0]["content"]}
--
HecPeAre - 22 Sep 2007
response = Net::HTTP.get_response(URI.parse(url))
a=XmlSimple.new.xml_in(response.body)
instantiate_collection(a)
--
HecPeAre - 15 Oct 2007