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