about java-RMI concept -


My professor asked me to execute an RMI program. The compilation of the client and server program is perfect. It did not generate any errors. But when I give 'rmic implementation class-name', it shows that no squares were found.

I thought, the implementation program will be automatically compiled when the client and server program will be compiled. After those two compilation, I can find the implementation program file with the client and server class files in the stored location. But when I try to create a client stub and server skeleton, it indicates that "the implementation class was not found."

Please help me find the class file for the implementation program.

The official tutorial for this is:


Comments