Hi,
I am trying to compile my first EJB remote interface.
I am getting error like "interface javax.ejb.EJBObject of interface Cabin not found.
My code is like this
import java.rmi.RemoteInterface;
public interface Cabin extends javax.ejb.EJBObject{
----
}
I am jdk1.2 and javawebserver2.0 versions.
Is it required for me to downloaded any classes and if so what classes should i download.
Thanks in advance
Andy
-
Interface not found (5 messages)
- Posted by: Andy C
- Posted on: December 11 2000 13:33 EST
Threaded Messages (5)
- Interface not found by Kapil Israni on December 11 2000 16:49 EST
- Interface not found by Andy C on December 11 2000 17:31 EST
- Interface not found by Venkat Ravi Dodla on December 11 2000 17:35 EST
-
Interface not found by Andy C on December 11 2000 05:48 EST
- Interface not found by Vijay K on December 11 2000 06:37 EST
-
Interface not found by Andy C on December 11 2000 05:48 EST
-
Interface not found[ Go to top ]
- Posted by: Kapil Israni
- Posted on: December 11 2000 16:49 EST
- in response to Andy C
u might wanna check ur classpath.
and yes u have to download the J2EE libraries -
Interface not found[ Go to top ]
- Posted by: Andy C
- Posted on: December 11 2000 17:31 EST
- in response to Kapil Israni
Hi kapil,
can you please let me know the path and what all the classes i should download from J2EE.
Thanks
Andy -
Interface not found[ Go to top ]
- Posted by: Venkat Ravi Dodla
- Posted on: December 11 2000 17:35 EST
- in response to Kapil Israni
If you are using WebLogig 5.0 verify presence of weblogicaux.jar and weblogicbeans.jar etc in your classpath. If you are using 6.0 look for presence of weblogic.jar. These are located in the lib subdirectory of Weblogic Home.
Venkat Ravi Dodla -
Interface not found[ Go to top ]
- Posted by: Andy C
- Posted on: December 11 2000 17:48 EST
- in response to Venkat Ravi Dodla
Can you please let me know the path and classpath also..
-
Interface not found[ Go to top ]
- Posted by: Vijay K
- Posted on: December 11 2000 18:37 EST
- in response to Andy C
you have to have the following files/dirs in your classpath in order for your ejbs to compile
if weblogic is installed under c:\weblogic then you need
c:\weblogic\lib\weblogicaux.jar
c:\weblogic\classes
and if you are using oracle 8.0.5
then put
c:\weblogic\bin\oci805_8\weblogicoci36.dll in the path.
Hope this helps