I am trying to run the 1st ejb in the headfirst book on page #18. I have the exact code as in the book. But the AdviceHome always fails. It says although it has the Advice.java in the same package as AdviceHome. Can antone please tell me what is wrong, I have attached the code for AdviceHome.java and Advice.java.
Thanks, -Gayatri.
------------------------------------- AdviceHome.java:12: cannot resolve symbol symbol : class Advice location: package headfirst import headfirst.Advice; ^ AdviceHome.java:15: cannot resolve symbol symbol : class Advice location: interface headfirst.AdviceHome public Advice create() throws RemoteException, CreateException; ^ 2 errors --------------------------------------------------------- package headfirst;