Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to build a chat application using ruby on linux ,So my client can not send many messages, it simply sends a one message in the first

Server Code :

#!/usr/bin/ruby
require 'socket'

server = TCPServer.new(2008)

while (session = server.accept) && (input = session.gets)
    puts input

end 

Client Code :

#!/usr/bin/ruby
require 'socket'


begin
 clientSession = TCPSocket.new( "localhost", 2008 ) 

rescue StandardError => bang
  puts "Error !! "
else


while !(clientSession.closed?) 

print "Enter message :  "
msg = gets
clientSession.puts msg 
end

end

Thanks a lot for your time!!

share|improve this question
any help plzz ! – AHméd Net Jan 5 at 9:56
What is the error that you're facing? – nikhil Jan 5 at 10:19
I have no error the problem is when I want to send for example 4 messages the client sends just one message :( – AHméd Net Jan 5 at 10:30

1 Answer

Your problem is here:

while (session = server.accept) && (input = session.gets)
  puts input
end 

You are accepting connections in a while loop. What you want instead is to first accept the connection, and then loop through that:

connection = server.accept

while (input = connection.gets)
  puts input
end
share|improve this answer
thank you very much it works now – AHméd Net Jan 5 at 10:37
You should mark this answer as the solution, Ahmed – maetthew Feb 24 at 12:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.