Hi All,
I am newbie to Jboss Server. I have
installed Jboss-2.4.3_tomcat-3.2.3 and able to run the server
successfully.
my problem is, I am not able to
compile the following Java file.
import javax.ejb.EJBObject;
import java.rmi.RemoteException; public interface Project extends EJBObject
{
public void addProject() throws
RemoteException;
public String getProjectId() throws RemoteException; public String getProjectName() throws RemoteException; public void setProjectId(String projectId) throws RemoteException; public void setProjectName(String projectName) throws RemoteException; } when I complie the above source, I am
getting the following errors : -
Project.java:3: cannot resolve symbol
symbol : class EJBObject
locaton : package ejb
import javax.ejb.EJBObject;
Project.java:3: cannot resolve symbol
symbol : class EJBObject
locaton : interface Project
public interface Project extends EJBObject
{
^
2 errors
I have already set the Classpath and
path variables as instructed in the Jboss Documentation, is there any thing
extra needed to set to the Classpath/ path environment variables ?..please help
me in this.
Thanks in Advance,
Kiran |