From: Gustav - Railist Date: 2006-09-10T06:40:38+09:00 Subject: DRb connect remotely? Bad File Descriptor Hey I can't seem to get this simple DRb client to access the server over my network... I get a bad file descriptor error. ############# The Client Script ################ require 'drb' DRb.start_service server = DRbObject.new(nil, "druby://#{ARGV.shift}") my_id = server.initialize_me puts my_id ############# The Server Script ############### require 'drb' class PerformAlexaUpdate def initialize_me return 'hello' end end h_server = DRb::DRbServer.new 'druby://127.0.0.1:5555', PerformAlexaUpdate.new h_server.thread.join ########################################### Any ideas will be greatly appreciated! Thanks in advance, Gustav