Hello
We runing rmi client and server from one computer the code files in the same directory

javac *java
rmic FileImpl
start rmiregistry
java -Djava.security.policy=policy.txt FileServer

after that we start a client

java FileClient kuku.txt 127.0.0.1

Does we intiate several JVMs by starting client and server if not how to intiate JVM for each client and server?
I need to run several JVMs (servers) and one more diffrent JVM for client
how I do this?
Thank you a lot in advance

Every time you execute "java" from the command line you are starting another JVM.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.