I'm thinking that these errors mean to look at section 9.2.7 of the EJB 2.0 specs, but nothing matched. These methods were fine till I added the class as a parameter to the methods. I also tried implementing from Serializable, but still got the same errors. So my declaration of the method argument looks like ...
 
 public class AccountInfo implements Serializable, IAccounts {
...
}
 
Any help much appreciated.
 
[Verifier]
Bean   : Account
Method : public abstract boolean addAccount(AccountInfo) throws RemoteException
Section: 9.2.7
Warning: The method arguments in the remote interface must be of valid types for RMI/IIOP.
 
[Verifier]
Bean   : ConfigureAccount
Method : public abstract void addNewAccount(AccountInfo) throws RemoteException
Section: 6.10.5
Warning: The method arguments in the remote interface must be of valid types for RMI/IIOP.

Reply via email to