4 Replies Latest reply on Mar 21, 2003 11:32 AM by petertje

    javax.ejb package not found

    rubia

      i just write the following code in a .java file.

      import javax.ejb.*;
      import java.rmi.*;

      public interface Hello extends EJBObject {
      abstract public String sayHello() throws RemoteException;
      }

      set my path to my jdk\bin but after javac command it gives me an error that
      javax.ejb package does not exsist.in book there is written in one place
      that to compile beans code one have to include the javax.ejb package path to classpath,but i dont understand it,does this package is not in jdk i also have jdk1.4.0,giving same problem.
      can any one tell me whole proper path or method,so i could run my ejb,i want only DOS solution cant use any other application at this moment.