Hi Iam trying to compile following EJB remote interface, the import javax.ejb.* statement is unresolved while compiling. will you please help me in setting the classpath. I have set the classpath to c:\jdk1.4\lib\tools.jar,c:\jdk1.4\bin. what else i need to do?
import java.rmi.*; import javax.ejb.*;
public interface EjbTest extends EJBObject{ public void printString(String str) throws RemoteException; }
EjbTest.java:2: package javax.ejb does not exist import javax.ejb.*; ^ EjbTest.java:4: cannot resolve symbol symbol : class EJBObject location: interface EjbTest public interface EjbTest extends EJBObject{