From: Ming en Chia Date: 2007-04-12T04:54:05+09:00 Subject: Problem calling Net::HTTP.get_response in Thread.new i had a strange problem of unable to call Net::HTTP.get_response in thread example this work well Net::HTTP.get_response(URI.parse("http://www.google.com/")) however when i called inside a thread it does not work it does not work, i was wondering why. Thread.new do Net::HTTP.get_response(URI.parse("http://www.google.com/")) end -- Posted via http://www.ruby-forum.com/.