Andy
Andy

Reputation: 1090

Run a program on a specific port of my machine

I need to run a setup on my windows machine with 1 master and 2 workers on the same machine. I have setup the master to run on port 1111 and workers to run on 2222 & 2223. How can i access these ports to run my programs? I dont want to install VmWare or any virtual desktop.

I want to know how can I run a program on a specific port of my machine. If it requires a socket program, can someone provide a sample JAVA API for the same?

Upvotes: 1

Views: 5319

Answers (2)

npinti
npinti

Reputation: 52185

You cannot run a program on a Port, what you can do is make your program listen to a port. Check this tutorial from Oracle for more information regarding Java Sockets

Upvotes: 7

The Java Sockets API will allow you to specify the port number.

See here: http://download.oracle.com/javase/6/docs/api/java/net/Socket.html#Socket%28java.net.InetAddress,%20int%29

Upvotes: 0

Related Questions