| Author |
rmic command : Class file not found
|
sa ag
Greenhorn
Joined: Sep 20, 2012
Posts: 1
|
|
I have my server file EUStatsServer.java(server program using RMI) and interface file EuStats.java(Interface having definition of method that would be used in EUStatsServer.java file) in C:\rmi folder.
firstly i compiled these file. i got EUstats.class file
While using command rmic EUStatsServer. it gives an error.
Class EUStatsServer not found.
|
 |
Roberto Perillo
Bartender
Joined: Dec 28, 2007
Posts: 2216
|
|
Greetings, Sa. Welcome to JavaRanch!
First, is this question related to the OCMJD certification?
Other than that, please TellTheDetails. How do you expect us to help you without knowing what is the error you are getting?
|
Cheers, Bob "John Lennon" Perillo
SCJP, SCWCD, SCJD, SCBCD - Daileon: A Tool for Enabling Domain Annotations
|
 |
Himai Minh
Ranch Hand
Joined: Jul 29, 2012
Posts: 312
|
|
I assume Sa Ag is working on the assignment to create the RMI application.
By using JDK 1.5 or above, you don't need rmic to generate a stub file as the stub file will be generated automatically.
To run rmic EUStateServer, make sure the class file is in the right directory.
From this command, "rmic EUStatsServer", EUStatsServer.class is supposed to be in the same directory as rmic exeutable file (which is in the same directory as javac, java .... in JDK).
|
 |
 |
|
|
subject: rmic command : Class file not found
|
|
|