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

This is just a general advice I need on the best practices used in deciding the port numbers for custom client server applications running on the internet.

I have a custom application where the client runs on a java applet from a user's browser and connects to a port on the server. The server is running on a publicly accessible cloud.

Based on my previous experience of writing socket code , I can decide upon a random port number (say 5999) and use it for client server communication. However in this case the client can be any user machine and there can be many users accessing the server so the question is how to ensure that I use a port number which is least likely to be used by any other service on the user's PCs.

I have also explored webservices based protocols for this purpose but I didnt use it for the reason that my requirement is really simple and it can be fulfilled with a simple socket communication and a custom protocol. I feel webservices tools and stuff like SOAP , CORBA are too heavy weight.

Can somebody advice on this please

Thanks in advance

Regards Shyam

share|improve this question

2 Answers

up vote 3 down vote accepted

chose one that is not on this list and hope for the best

Also, a client can connect to many servers on the same port. When the clients connect, they will use a random port on there end.

Only the server needs to worry about using a free port, and the clients need to know what this port is else they will not be able to connect to your server.

share|improve this answer
Thanks for the inputs, I was assuming that the client also binds on that port and so if the port is occupied by another application then the client will fail to communicate. – Shyam Mar 20 '12 at 14:41
When the client connects, it will use a free port. There is a chance that the client's PC will start a new server programmer, unrelated to yours, that will try to use a the same port that your client has been given. I think the general solution to that is 'fuck it'. – thecoshman Mar 20 '12 at 14:43

You don't have to choose a portnumber on the users PC. Just the server port has to be one specific number.

When the client connects to the servers IP and port number, the operating system chooses a random free port for the client itself.

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.