Click to See Complete Forum and Search --> : Class not found error


htmlperlman
03-31-2005, 05:41 AM
I have compiled my code and then when I use the "rmic" command i get a class not found error. The line i use is below:

rmic SimpleStocks.StockMarketImpl

and it says "error: Class SimpleStocks.StockMarketImpl not found"

I followed the website below and definately compiled th java files, so cant figure out what it could be:

http://my.execpc.com/~gopalan/java/rmiserver.html

Hope someone can help

buntine
03-31-2005, 05:51 AM
If you are working outside of the SimpleStocks package, did you import the class?

import SimpleStocks.StockMarketImpl;

Regards.