It looks lime you've declared a method on the Remote Interface of your bean, but not implemented this correctly in the implementation class.
If your remote interface is:
Your business implementation class should have a method in it:Code:public void updateRecord throws RemoteException, MyException;
Code:public void updateRecord throws MyException {}




Reply With Quote