"CLASS NOT FOUND" error when running RMIC
Hi.
I have copied the code from internet to study RMI.
I compiled the codes and tried to rmic it.
However, when I try to rmic, it gives me class not found error.
For example,
I have files call
"TestingInterface.java" - interface
"Testing.java" - server
I 'javac'ed on both files
and
rmic Testing
it gives me
error: Class Testing not found
1error
I read some of the articles saying classpath but I don't get it...
can anyone help me?
Thank you

