Hi, I have written a program that runs the following imports: import headfirst.*; import javax.ejb.*;
When I run the following command: javac -classpath {$CLASSPATH}:AdviceAppClient.jar AdviceClient.java
I get the following errors: package headfirst does not exist package javax.ejb does not exist
The funny thing is that if I try to compile using the following command: javac AdviceAppClient.jar then I do not get the error "package javax.ejb does not exist" , but I still get the error "package headfirst does not exist".
The file headfirst package is in a subdirectory called classes