Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to implement Sun's example Socket program, i.e. the KnockKnock server and client found here: http://download.oracle.com/javase/tutorial/networking/sockets/readingWriting.html

So I build the 3 files (EchoClient, KnockKnockServer, KnockKnockProtocol) into a project, build them, then go to cmd to run them:

> java KnockKnockServer
> Could not listen on port: 4444. 

Also, I have trouble with the EchoClient (not that it means much since the server doesn't work). I get the following:

> java EchoClient
> Couldn't get I/O for the connection to: localhost 

The one thing I changed in EchoClient class was to try and connect to "localhost" instead of their example machine "taranis". I don't understand the I/O error at all though.

So I need to figure this stuff out so I can later adapt it. Here's what I'm wondering: how do I know what port listen for in the KK Server? And if I want to connect to another computer in the EchoClient, would I directly put their (IPv4) IP address instead of "localhost"?

Thank you for any help

share|improve this question
Maybe a program is already using port 4444. What does it say when you run lsof -i :4444 on the command line? – Jack Edmonds Aug 12 '11 at 19:12
Uhh, I get "'lsof' is not recognized as an internal or external command, operable program or batch file." – YoungMoney Aug 12 '11 at 19:21

2 Answers

up vote 2 down vote accepted

Try a different (higher port) because 4444 might already be in use on your machine:

Technical description for port 4444:

The port 4444 is specifically assigned to the Kerberos 5 authentication features particularly the implementation of Kerberos 4 in various systems including those running under the Mac OS X platform. The communication port 4444 is used in the conversion of Kerberos 5 credentials into an acceptable Kerberos 4 format.

source

share|improve this answer
thanks for that. What are some other good ports I could try? I don't know too much about the different ports. – YoungMoney Aug 12 '11 at 19:19
1  
Try any number above 10000. Your MAX is 65535, is I think. – Steve Aug 12 '11 at 19:27
Alright so I tried 4601 (found it in the link in this answer) and now I don't get the error but the command line just hangs there. It appears that the program is frozen. What's up with that? – YoungMoney Aug 12 '11 at 19:29

That tutorial breaks rule #2 about handling exceptions: it makes up its own error message ' Couldn't get I/O for the connection to: ...' instead of printing the actual exception. Change it to do that, then you have some hope of finding out what went wrong.

I complained about that tutorial about eight years ago ;-(

(Rule #1 is print something.)

share|improve this answer

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.