From: Peter Bailey Date: 2006-05-04T23:03:34+09:00 Subject: New thread for RUBY ftp problems . . . I'm starting a new thread, because, my problem appears even in the simplest try of RUBY's ftp. Here's a simple attempt to just ftp a file over to one of our UNIX servers here at my company. It's left hanging after the last "end" and I have to kill the shell. C:\workflows\graphics\OneVision\MPC\indexes\6x9>irb irb(main):001:0> require 'net/ftp' => true irb(main):002:0> ftp = Net::FTP.open('quark.bna.com') do |ftp| irb(main):003:1* ftp.login('user','passw') irb(main):004:1> ftp.chdir('/home/pb4072') irb(main):005:1> ftp.putbinaryfile("lrr095.pdf") irb(main):006:1> end Is RUBY's ftp reliable? Or, what am I doing wrong?? Thanks. -- Posted via http://www.ruby-forum.com/.