Ruby networking problem on windows - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T16:11:38Z http://stackoverflow.com/feeds/question/177606 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/177606/ruby-networking-problem-on-windows 0 Ruby networking problem on windows Josh Moore 2008-10-07T08:30:06Z 2008-10-07T17:30:58Z <p>I am running windows XP with ruby 1.8.6 patchlevel 111. I am using HTTP to connect to a remote server and it has been running fine. All of a sudden it started to through the exception listed below (I did not change any code since the last time I ran it successfully). Does anybody know what is going on?</p> <pre> c:/ruby/lib/ruby/1.8/timeout.rb:54:in `rbuf_fill': execution expired (Timeout::E rror) from c:/ruby/lib/ruby/1.8/timeout.rb:56:in `timeout' from c:/ruby/lib/ruby/1.8/timeout.rb:76:in `timeout' from c:/ruby/lib/ruby/1.8/net/protocol.rb:132:in `rbuf_fill' from c:/ruby/lib/ruby/1.8/net/protocol.rb:116:in `readuntil' from c:/ruby/lib/ruby/1.8/net/protocol.rb:126:in `readline' from c:/ruby/lib/ruby/1.8/net/http.rb:2029:in `read_status_line' from c:/ruby/lib/ruby/1.8/net/http.rb:2018:in `read_new' from c:/ruby/lib/ruby/1.8/net/http.rb:1059:in `request' ... 19 levels... from c:/ruby/lib/ruby/1.8/test/unit/autorunner.rb:216:in `run' from c:/ruby/lib/ruby/1.8/test/unit/autorunner.rb:12:in `run' from c:/ruby/lib/ruby/1.8/test/unit.rb:278 from c:/ruby/lib/ruby/gems/1.8/gems/rake-0.8.3/lib/rake/rake_test_loader .rb:5 rake aborted! Command failed with status (3): [c:/ruby/bin/ruby -Ilib;test "c:/ruby/lib/r...] </pre> http://stackoverflow.com/questions/177606/ruby-networking-problem-on-windows/177656#177656 1 Answer by Vinko Vrsalovic for Ruby networking problem on windows Vinko Vrsalovic 2008-10-07T08:48:56Z 2008-10-07T08:48:56Z <p>Maybe the remote host is down? Or a new firewall has been put between your machine and the remote host?</p> <p>"Timeout::Error" usually points to that direction.</p> http://stackoverflow.com/questions/177606/ruby-networking-problem-on-windows/179491#179491 0 Answer by Gene T for Ruby networking problem on windows Gene T 2008-10-07T17:21:39Z 2008-10-07T17:30:58Z <p>besides the obvious (firewall, you got blacklisted for bad user-agent or ignoring robots.txt), you can try curl</p> <p><a href="http://curl.haxx.se/libcurl/ruby/" rel="nofollow">http://curl.haxx.se/libcurl/ruby/</a></p> <p>OR increase net/http timeout to say, 30+ seconds</p> <p><a href="http://groups.google.com/group/rubyonrails-talk/msg/cc89e8ae6703d6fb" rel="nofollow">http://groups.google.com/group/rubyonrails-talk/msg/cc89e8ae6703d6fb</a></p>