Java Stored Procedure and Oracle Classpath [message #91664] |
Fri, 03 January 2003 03:29 |
ez
Messages: 3 Registered: January 2003
|
Junior Member |
|
|
Hi,
I'm attempting to call an ejb from a Java Stored Procedure. I've loaded the local client classes for the ejb into the an oracle schema using loadjava.
I get unresolved classpath errors - specifically;
Class javax.ejb.EJBObject not found in import.
Here's my code;
import java.rmi.RemoteException;
import javax.ejb.EJBObject;
import javax.ejb.SessionContext;
public interface TestEngine_SL extends EJBObject
{
public int getValue() throws RemoteException;
}
How can I get the ejb and rmi objects into the classpath?
Thanks
E
|
|
|
|
|