Hi,
Can you access any other sites using http from within your
controllers?
I see you are using Windows - does firewall allow your mongrels/
webrick to access Internet?
If it's timeout issue, you can easily increase timeout with net/http
library like:
Net::HTTP.start('
www.whatever.org.uk') { |http|
http.open_timeout = http.read_timeout = 60 # You increase
timeout for connections
req = Net::HTTP::Get.new("/index.html")
resp = http.request(req)
}
page_content = resp.body
Best,
H.