Ok, there some good news & bad news...

&
The good:
when I tried my theory with:
javac -classpath $CLASSPATH:AdviceAppClient.jar AdviceClient.java
the first error was gone!
now there are 4 errors:
----------------------------------------------------------------------------
AdviceClient.java:24: cannot resolve symbol
symbol : class AdviceHome
location: class AdviceClient
AdviceHome home = (AdviceHome) PortableRemoteObject.narrow(o, AdviceHome.class);
^
AdviceClient.java:24: cannot resolve symbol
symbol : class AdviceHome
location: class AdviceClient
AdviceHome home = (AdviceHome) PortableRemoteObject.narrow(o, AdviceHome.class);
^
AdviceClient.java:24: cannot resolve symbol
symbol : class AdviceHome
location: class AdviceClient
AdviceHome home = (AdviceHome) PortableRemoteObject.narrow(o, AdviceHome.class);
^
AdviceClient.java:26: cannot resolve symbol
symbol : class Advice
location: class AdviceClient
Advice advisor = home.create();
^
4 errors
[root@localhost headfirst]# clear
[root@localhost headfirst]# javac -classpath $CLASSPATH:AdviceAppClient.jar AdviceClient.java
AdviceClient.java:24: cannot resolve symbol
symbol : class AdviceHome
location: class AdviceClient
AdviceHome home = (AdviceHome) PortableRemoteObject.narrow(o, AdviceHome.class);
^
AdviceClient.java:24: cannot resolve symbol
symbol : class AdviceHome
location: class AdviceClient
AdviceHome home = (AdviceHome) PortableRemoteObject.narrow(o, AdviceHome.class);
^
AdviceClient.java:24: cannot resolve symbol
symbol : class AdviceHome
location: class AdviceClient
AdviceHome home = (AdviceHome) PortableRemoteObject.narrow(o, AdviceHome.class);
^
AdviceClient.java:26: cannot resolve symbol
symbol : class Advice
location: class AdviceClient
Advice advisor = home.create();
^
4 errors
----------------------------------------------------------------------------
This is what I did...
1) I logged into Linux.
2) I started the J2EE RI server by:
j2ee -verbose
Everthing had started perfectly...
3) I attempted to recompile the client application...
Am I supposed to redeploy everything all over again using 'deploytool'? And then attempt to compile the client app?
Does anyone recognize my problems?
Would it help if I appended my proj directory to my CLASSPATH, permanently?
Again, any criticisms, suggestions, hints, advice, are warmly welcomed ...