Hi guyz,
I'm putting my ques in a different way!!.
I compile this code:
package headfirst;
import javax.ejb.*;
import java.rmi.RemoteException;
public interface Advice extends EJBObject{
public
String getAdvice() throws RemoteException;
}
and i get these two errors:
C:\projects\advice\src\headfirst\Advice.java:3: package javax.ejb does not exist
import javax.ejb.*;
^
C:\projects\advice\src\headfirst\Advice.java:6: cannot resolve symbol
symbol : class EJBObject
location: interface headfirst.Advice
public interface Advice extends EJBObject{
^
2 errors
Can some1 help me know, wats wrong with this.
Thankz,
Puneet