[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

using tcp port via socket on windows 2000 server

sean_n

3/18/2007 1:36:00 AM

Here's a very simple ruby app that will listen to tcp port 9990. It
works on my client windows xp machine, but when i put it on windows
2000 server, it doesn't work. no port filtering is being done, so i'm
assuming that all ports are available. any suggestions? how do i
find out what ports are available.

require 'socket'
sessions = {}
serv=TCPServer.new('localhost',9990)
puts 'Server running...'
while(session = serv.accept)
command = session.gets
puts command
end

1 Answer

Brian Candler

3/18/2007 10:20:00 AM

0

On Sun, Mar 18, 2007 at 10:40:06AM +0900, seannakasone@yahoo.com wrote:
> Here's a very simple ruby app that will listen to tcp port 9990. It
> works on my client windows xp machine, but when i put it on windows
> 2000 server, it doesn't work. no port filtering is being done, so i'm
> assuming that all ports are available. any suggestions? how do i
> find out what ports are available.
>
> require 'socket'
> sessions = {}
> serv=TCPServer.new('localhost',9990)
> puts 'Server running...'
> while(session = serv.accept)
> command = session.gets
> puts command
> end

I don't have a Windows 2000 machine, but I think in any case you'll need to
provide more details for anyone to be able to help you. What do you mean by
"it doesn't work"? It could mean:

- the program raises an exception (if so, post the exact error message)

- a client gets 'connection refused' when it tries to connect to port 9990
(if so, this means the server isn't listening on port 9990)

- the client can connect, but when it sends a string, nothing is displayed
on the server

- the server doesn't get as far as printing "Server running..."

- probably a bunch of other failure modes that I haven't thought of.

One easy thing you can try is to use '127.0.0.1' instead of 'localhost'.
Perhaps Windows 2000 doesn't define the name "localhost" for you.

But without seeing a description of the error, it's very hard to help you.
More advice here: http://www.catb.org/~esr/faqs/smart-questions....

Regards,

Brian.