Hi, I'm writing a network app in Java and am having a problem reserving port numbers for my program. Curently I am able to use port 5000, but that is it, I am unable to specify another specific port num. If I do not specify a port number the OS will designate one for me. But for the purpose of comunication between clients I would like to have another static port number. I understand that numbers less than 1024 approx are reserved by the OS so I have not attempted to obtain one of those. I have even tried to reserve a port number that the OS designated for my use during a prior execution alas to no avail. Anyway, does anyone have any idea why I can only reserve port 5000? and any other port nums I could try would be appreciated. Thanks