Remote Interface question
I have a remote Interface as follows.
public interface AccessDataBaseI {
List retrieveItems(Object id) throws ApplicationException;
}
The ApplicationException extends RemoteException.
public class ApplicationException extends RemoteException {
public AppException () {}
public AppException (String msg) {
super(msg);
}
}
I build compile the application and I dont have a problem .When I deploy it to the server I get the following error message .
method retrieveItems(Object id) defined in the remote interface must include java.rmi.RemoteException in its throws clause.
It includes the ApplicationException in its signature which extends RemoteException .
Any ideas what could be wrong and how to over come this .
I am using weblogic 8.1.4 .
Thanks for your help.

