I get one EJB example for test with JBOSS, but I have a compile success only
Bean and Remote Interfaces,
with HOME Interface, when I compile (javac InteresesHome.java), show this
error :
InteresesHome.java:7: cannot resolve symbol
symbol : class Intereses
location: interface InteresesHome
Intereses create() throws RemoteException, CreateException;
^
1 error
What is the Problem ?
Java Version : j2sdk1.4.1_01 AND j2sdkee1.3.1
--------------------------- InteresesHome.java---------------------------
import javax.ejb.EJBHome;
import javax.ejb.CreateException;
import java.rmi.RemoteException;
public interface InteresesHome extends EJBHome {
Intereses create() throws RemoteException, CreateException;
}
----------------------------------------------------------------------------