"import javax.ejb cannot be resolved" Error
I am getting "The import javax.ejb cannot be resolved" Error.
I have set the Java_home variable and also added the j2ee.jar in the class path.
Is there anything else I should do.
This is my simple code:
package testPackage;
import javax.ejb.EJBObject;
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World");
}
}
Please help me resolve this....